glam/schemas/20251121/linkml/modules/classes/Name.yaml
kempersc 37852a46b0 Refactor significance and social media classes for improved clarity and multilingual support
- Updated SignificanceType.yaml to enhance descriptions, add alternative language descriptions, and clarify comments.
- Refined CommunitySignificance, EconomicSignificance, HistoricalSignificance, ScientificSignificance, AestheticSignificance, TerroirSignificance, and DiplomaticSignificance classes with structured aliases and comments.
- Enhanced SilenceSegment.yaml with multilingual descriptions and structured aliases.
- Improved Size.yaml with clearer descriptions and added multilingual support.
- Updated SocialMediaPlatformType.yaml and SocialMediaProfile.yaml to include alternative descriptions in multiple languages and refined modeling notes.
- Added has_url slot to SocialMediaProfile for better URL management.
- Enhanced Warehouse and WarehouseType classes with preserved modeling notes for clarity on definitions and distinctions.
- Updated WebClaim and WebPortalType classes with preserved descriptions for better understanding of their roles and structures.
2026-02-15 23:26:52 +01:00

129 lines
3.8 KiB
YAML

id: https://nde.nl/ontology/hc/class/Name
name: name_class
title: Name Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
skos: http://www.w3.org/2004/02/skos/core#
rdfs: http://www.w3.org/2000/01/rdf-schema#
dwc: http://rs.tdwg.org/dwc/terms/
imports:
- linkml:types
- ../metadata
- ../slots/has_label
- ../slots/has_language
- ../slots/has_type
default_prefix: hc
classes:
Name:
class_uri: hc:Name
description: Structured name value with optional type and language metadata.
slots:
- has_label
- has_type
- has_language
slot_usage:
has_label:
required: true
examples:
- value: "Dodo"
- value: "Dronte"
has_type:
range: NameType
required: false
examples:
- value: CommonName
- value: ScientificName
has_language:
# range: string
required: false
examples:
- value: "en"
- value: "nl"
- value: "la"
close_mappings:
- schema:name
- skos:prefLabel
- rdfs:label
related_mappings:
- dwc:vernacularName
- schema:alternateName
notes:
- |
Preserved from prior description (commit 6e634651):
Preserved from prior description (commit 6e634651):
Structured representation of a name associated with an entity.
**MIGRATION NOTE** (2026-01-22):
Created per slot_fixes.yaml migration from `common_name` string
to structured Name class per Rule 53.
**Purpose**:
Provides structured representation for names including:
- The name value itself (via has_label)
- Name type classification (e.g., common name, scientific name, trade name)
- Language information
**Ontological Alignment**:
- **Primary** (`class_uri`): `schema:name` - Schema.org name
- **Close**: `skos:prefLabel`, `rdfs:label` - Label predicates
- **Related**: `dwc:vernacularName` - Darwin Core vernacular name
**Use Cases**:
- Biological specimens with common/vernacular names in multiple languages
- Organizations with official names and trading names
- Places with indigenous and colonial names
- Products with brand names and generic names
**Pattern**:
annotations:
custodian_types: '["*"]'
custodian_types_rationale: Name structures applicable to all heritage custodian types.
custodian_types_primary: M
specificity_score: 0.25
specificity_rationale: >-
Broadly applicable - names are fundamental to all heritage entities
including biological specimens, organizations, places, and objects.
template_specificity: '{"collection_discovery": 0.3, "person_research": 0.35, "general_heritage": 0.25}'
# migration_info: (Flattened)
migration_source_slot: common_name
migration_date: "2026-01-22"
migration_rule: "Rule 53"
comments:
- "Structured name representation with type and language"
- "Replaces simple string-valued common_name slot"
- "Supports multilingual names through has_language"
- "Type classification via NameType hierarchy"
- "Created 2026-01-22 from common_name migration (Rule 53)"
examples:
- value:
has_label: "Dodo"
has_type: CommonName
has_language: "en"
- value:
has_label: "Dronte"
has_type: CommonName
has_language: "nl"
- value:
has_label: "Coast Redwood"
has_type: CommonName
has_language: "en"
- value: |
has_name:
- has_label: "Dodo"
has_type: CommonName
has_language: "en"
- has_label: "Dronte"
has_type: CommonName
has_language: "nl"