glam/schemas/20251121/linkml/modules/classes/LegalName.yaml
2025-12-03 17:38:46 +01:00

101 lines
3.2 KiB
YAML

# Legal Name Class
# Legal names following TOOI naming conventions
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
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"