glam/schemas/20251121/linkml/modules/classes/LastName.yaml
kempersc 2d09776856 Refactor StorageCondition schema: Migrate compliance_status to has_or_had_status with ComplianceStatus class
- Removed compliance_status slot and replaced it with has_or_had_status.
- Updated has_or_had_status to use ComplianceStatus for structured representation.
- Adjusted examples to reflect new structure for compliance status.
- Updated documentation to indicate migration and provide details on the ComplianceStatus class.
2026-01-22 16:22:16 +01:00

75 lines
2.1 KiB
YAML

id: https://nde.nl/ontology/hc/class/LastName
name: LastName
title: Last Name Class
description: >-
Represents a surname/family name with optional base form for sorting.
**PNV ALIGNMENT**: Follows Person Name Vocabulary (PNV) patterns for Dutch
surname representation where names may have prefixes.
**SORTING BEHAVIOR**:
Dutch names with prefixes (van, de, van der) are sorted by the base surname:
- "Johannes de Vries" → base: "Vries" (sorts under V)
- "Anna van den Berg" → base: "Berg" (sorts under B)
**EXAMPLE**:
```yaml
LastName:
has_or_had_label:
label_value: "van der Berg"
has_or_had_base:
base_value: "Berg"
```
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
pnv: https://w3id.org/pnv#
schema: http://schema.org/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_or_had_label
- ../slots/has_or_had_base
- ./Label
- ./BaseName
classes:
LastName:
class_uri: hc:LastName
description: >-
Surname/family name component of a person name.
Supports Dutch naming conventions with prefix separation.
close_mappings:
- schema:familyName
- pnv:surname
slots:
- has_or_had_label
- has_or_had_base
slot_usage:
has_or_had_label:
range: Label
inlined: true
description: >-
The full surname including any prefixes (e.g., "van der Berg").
examples:
- value:
label_value: "van der Berg"
description: Dutch surname with prefix
has_or_had_base:
range: BaseName
inlined: true
description: >-
The base surname used for sorting (e.g., "Berg" for "van der Berg").
In Dutch convention, names are sorted by this base form.
examples:
- value:
base_value: "Berg"
description: Base surname for sorting
annotations:
custodian_types: '["*"]'
specificity_score: 0.6
specificity_rationale: >-
Moderately specific - person name component used in staff/contact contexts.