glam/schemas/20251121/linkml/modules/classes/LegalForm.yaml
kempersc 626bd3a095 refactor(schemas): apply naming conventions to 261 class files
- Apply Rule 39: RiC-O style hasOrHad*/isOrWas* for temporal slots
- Apply Rule 43: Singular noun convention (keywords → keyword)
- Update slot references to match renamed slot files
- Maintain schema integrity across all class definitions
2026-01-10 15:36:33 +01:00

118 lines
4.1 KiB
YAML

id: https://nde.nl/ontology/hc/class/LegalForm
name: legal_form_class
title: Legal Form Class
description: |
Specific legal forms of organizations as defined by national and international law.
Based on ISO 20275 Entity Legal Form (ELF) codes.
prefixes:
linkml: https://w3id.org/linkml/
rov: http://www.w3.org/ns/regorg#
gleif: https://www.gleif.org/ontology/Base/
iso20275: https://www.gleif.org/en/about-lei/code-lists/iso-20275-entity-legal-forms-code-list
imports:
- linkml:types
- ../metadata
- ./LegalEntityType
- ./Country
- ../slots/specificity_annotation
- ../slots/template_specificity
- ./SpecificityAnnotation
- ./TemplateSpecificityScores
classes:
LegalForm:
class_uri: rov:orgType
description: |
Legal form of an organization as recognized by law.
Based on ISO 20275 Entity Legal Forms (ELF) standard.
Maps to:
- rov:orgType (Registered Organizations Vocabulary)
- gleif:hasLegalForm (GLEIF ontology)
- tooi:rechtsvorm (TOOI for Dutch entities)
attributes:
id:
identifier: true
slot_uri: schema:identifier
description: Unique identifier for the legal form
range: uriorcurie
required: true
elf_code:
slot_uri: gleif:hasEntityLegalFormCode
description: |
ISO 20275 Entity Legal Form code (4 alphanumeric characters).
Examples: 8888 (Stichting), RJFM (Public Limited Company)
range: string
required: true
pattern: ^[A-Z0-9]{4}$
country_code:
slot_uri: schema:addressCountry
description: |
Country jurisdiction for this legal form.
Links to Country class with ISO 3166-1 codes.
Legal forms are jurisdiction-specific - a "Stichting" in Netherlands (NL)
has different legal meaning than a "Fundación" in Spain (ES).
Schema.org: addressCountry indicates jurisdiction.
Examples:
- Dutch Stichting → country.alpha_2 = "NL"
- German GmbH → country.alpha_2 = "DE"
- French Association → country.alpha_2 = "FR"
range: Country
required: true
local_name:
slot_uri: schema:name
description: |
Name of the legal form in the local language.
Examples: "Stichting", "Gesellschaft mit beschränkter Haftung"
range: string
required: true
transliterated_name:
slot_uri: schema:alternateName
description: |
Transliterated name for non-Latin scripts.
Used for legal forms from countries using non-Latin alphabets.
range: string
has_or_had_abbreviation:
slot_uri: schema:additionalName
description: |
Common has_or_had_abbreviation of the legal form.
Examples: "BV", "GmbH", "LLC"
range: string
legal_entity_type:
slot_uri: org:classification
description: |
Reference to the high-level LegalEntityType.
Links to either PERSON or ORGANIZATION.
range: LegalEntityType
required: true
parent_form:
slot_uri: org:hasSubOrganization
description: |
Parent legal form in the hierarchy.
Example: "Limited Company" may have subtypes like "Public Limited Company"
range: LegalForm
valid_from:
slot_uri: schema:validFrom
description: Date when this legal form code became valid
range: date
valid_to:
slot_uri: schema:validThrough
description: Date when this legal form code ceased to be valid (if applicable)
range: date
comments:
- ISO 20275 defines over 1,600 legal forms across 150+ jurisdictions
- Each legal form has specific rights, obligations, and governance requirements
- Legal forms determine tax treatment, liability, and reporting requirements
slots:
- specificity_annotation
- template_specificity
slot_usage:
specificity_annotation:
range: SpecificityAnnotation
inlined: true
template_specificity:
range: TemplateSpecificityScores
inlined: true