glam/schemas/20251121/linkml/modules/classes/LegalName.yaml
kempersc 0393b321c9 refactor(schema): unify custodian_type slots into has_or_had_custodian_type (Rule 39, 43)
- Migrate 236+ class files from custodian_types to has_or_had_custodian_type
- Archive deprecated slots: custodian_type, custodian_types, custodian_type_broader/narrower/related
- Update main schema and manifest imports
- Fix Custodian.yaml class to use new slot
- Fix annotation format (list→scalar) in has_or_had_custodian_type.yaml

Rules applied:
- Rule 39: RiC-O naming convention (hasOrHad pattern)
- Rule 43: Slot nouns must be singular (multivalued:true for cardinality)
- Rule 38: Slot centralization with semantic URI
2026-01-09 10:55:21 +01:00

99 lines
3.4 KiB
YAML

id: https://nde.nl/ontology/hc/class/LegalName
name: legal_name_class
title: Legal Name Class
description: |
Legal names of entities as registered with authorities.
Based on TOOI naming conventions which distinguish between names with/without organizational type.
prefixes:
linkml: https://w3id.org/linkml/
rov: http://www.w3.org/ns/regorg#
imports:
- linkml:types
- ../metadata
- ./TimeSpan
- ../slots/specificity_annotation
- ../slots/template_specificity
- ./SpecificityAnnotation
- ./TemplateSpecificityScores
classes:
LegalName:
class_uri: rov:legalName
description: |
Legal name of an entity as officially registered.
Following TOOI pattern, provides three name variants:
1. Name including organizational type (e.g., "Gemeente 's-Gravenhage")
2. Name excluding organizational type (e.g., "'s-Gravenhage")
3. Alphabetically ordered variant (e.g., "Gravenhage")
Maps to:
- rov:legalName (Registered Organizations Vocabulary)
- tooi:officieleNaamInclSoort (TOOI full name)
- tooi:officieleNaamExclSoort (TOOI name without type)
- tooi:alfabetischeVolgorde (TOOI alphabetical ordering)
attributes:
id:
identifier: true
slot_uri: schema:identifier
description: Unique identifier for this legal name record
range: uriorcurie
required: true
full_name:
slot_uri: rov:legalName
description: |
Complete legal name including organizational type.
Example: "Stichting Rijksmuseum Amsterdam"
range: string
required: true
name_without_type:
slot_uri: tooi:officieleNaamExclSoort
description: |
Legal name excluding organizational type prefix/suffix.
Example: "Rijksmuseum Amsterdam"
range: string
alphabetical_name:
slot_uri: tooi:alfabetischeVolgorde
description: |
Name variant for alphabetical ordering (articles moved to end).
Example: "Gravenhage, 's" instead of "'s-Gravenhage"
range: string
display_name:
slot_uri: schema:name
description: |
Preferred display name for user interfaces.
May differ from legal name for readability.
range: string
language:
slot_uri: schema:inLanguage
description: |
Language of the legal name (ISO 639-1 code).
Example: "nl" for Dutch, "en" for English
range: string
pattern: ^[a-z]{2}$
script:
slot_uri: schema:characterEncoding
description: |
Script used for the name (ISO 15924 code).
Example: "Latn" for Latin, "Cyrl" for Cyrillic
range: string
pattern: ^[A-Z][a-z]{3}$
temporal_validity:
slot_uri: schema:temporalCoverage
description: |
Time period during which this legal name is/was valid.
Organizations may change legal names through mergers, rebranding, etc.
range: TimeSpan
comments:
- Legal names must match official registration exactly for legal validity
- Organizations may have different legal names in different jurisdictions
- Historical legal names are preserved with temporal validity periods
slots:
- specificity_annotation
- template_specificity
slot_usage:
specificity_annotation:
range: SpecificityAnnotation
inlined: true
template_specificity:
range: TemplateSpecificityScores
inlined: true