- Added new aliases for existing slots to improve clarity and usability, including: - has_deadline: has_embargo_end_date - has_extent: has_extent_text - has_fonds: has_fond - has_laboratory: conservation_lab - has_language: has_iso_code639_1, has_iso_code639_3 - has_legal_basis: legal_basis - has_light_exposure: max_light_lux - has_measurement_unit: has_unit - has_note: has_custodian_observation - has_occupation: occupation - has_operating_hours: has_operating_hours - has_position: position - has_quantity: has_artwork_count, link_count - has_roadmap: review_date - has_skill: skill - has_speaker: speaker_label - has_specification: specification_url - has_statement: rights_statement_url, rights_statement - has_type: custodian_only - has_user_category: serves_visitors_only - hold_record_set: record_count - identified_by: has_index_number - in_period: has_period - in_place: has_place - in_series: has_series - measure: has_measurement - measured_on: measurement_date - organized_by: has_organizer - originate_from: has_origin - part_of: suborganization_of - published_on: has_publication_date - receive_investment: has_investment - related_to: connection_heritage_type - require: preservation_requirement - safeguarded_by: current_keeper, record_holder_note - state: states_or_stated - take_comission: takes_or_took_comission - take_place_at: takes_or_took_place_at - transmit_through: transmits_or_transmitted_through - warrant: warrants_or_warranted - Introduced a new slot definition for evaluated_through to capture evaluation methodologies and review statuses.
168 lines
6.2 KiB
YAML
168 lines
6.2 KiB
YAML
id: https://nde.nl/ontology/hc/class/Identifier
|
|
name: identifier_classes
|
|
title: Identifier Classes (Generic and Custodian-Specific)
|
|
# Updated: 2026-01-23 - Added has_type for IdentifierType per F26 migration
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
schema: http://schema.org/
|
|
skos: http://www.w3.org/2004/02/skos/core#
|
|
dcterms: http://purl.org/dc/terms/
|
|
adms: http://www.w3.org/ns/adms#
|
|
prov: http://www.w3.org/ns/prov#
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/canonized_as
|
|
- ../slots/has_format
|
|
- ../slots/has_schema
|
|
- ../slots/has_score
|
|
- ../slots/has_standard
|
|
- ../slots/has_type
|
|
- ../slots/has_value
|
|
- ../slots/identified_by
|
|
- ../slots/allocated_by
|
|
- ../slots/allocated_through
|
|
- ../slots/has_source
|
|
- ../slots/temporal_extent
|
|
default_prefix: hc
|
|
classes:
|
|
# Generic Identifier class - base for all identifier types
|
|
Identifier:
|
|
class_uri: schema:PropertyValue
|
|
description: |
|
|
A generic identifier consisting of a scheme and value pair.
|
|
**Purpose**:
|
|
Base identifier class for any entity (not just heritage custodians).
|
|
Used when a simple scheme + value identifier is needed.
|
|
**For heritage custodian identifiers**: Use `CustodianIdentifier` which
|
|
extends this class with provenance tracking (allocation agency, standard, etc.)
|
|
**Schema.org Alignment**:
|
|
Maps to schema:PropertyValue which represents a property-value pair.
|
|
- propertyID → identifier_scheme
|
|
- value → identifier_value
|
|
exact_mappings:
|
|
- schema:PropertyValue
|
|
close_mappings:
|
|
- dcterms:identifier
|
|
- adms:Identifier
|
|
- skos:notation
|
|
slots:
|
|
# identifier_scheme REMOVED - migrated to has_scheme (Rule 53)
|
|
- has_schema
|
|
# identifier_value REMOVED - migrated to has_value (Rule 53)
|
|
- has_value
|
|
- has_type
|
|
slot_usage:
|
|
has_type:
|
|
range: IdentifierType
|
|
required: false
|
|
examples:
|
|
- value:
|
|
has_code: CATALOG_RAISONNE
|
|
has_label: Catalogue Raisonné Number
|
|
- value:
|
|
has_code: ISIL
|
|
has_label: ISIL Code
|
|
has_schema:
|
|
range: IdentifierScheme
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
has_label: "ISBN"
|
|
has_value:
|
|
range: IdentifierValue
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
has_value: "978-0-123456-47-2"
|
|
required: false
|
|
annotations:
|
|
specificity_score: 0.25
|
|
specificity_rationale: |
|
|
Low specificity - identifiers are broadly useful across all queries
|
|
involving entity lookup and cross-referencing.
|
|
# Heritage custodian-specific identifier with provenance tracking
|
|
CustodianIdentifier:
|
|
is_a: Identifier
|
|
class_uri: crm:E42_Identifier
|
|
description: |
|
|
An external identifier assigned to a heritage custodian entity by an authority.
|
|
Extends the generic Identifier class with provenance tracking:
|
|
- Which authority allocated the identifier
|
|
- Under what standard it was assigned
|
|
- When it was allocated
|
|
- Canonical/normalized form for matching
|
|
Connected to the Custodian hub via inverse property crm:P48i_is_preferred_identifier_of
|
|
(the Custodian has this Identifier as a preferred identifier).
|
|
CIDOC-CRM E42_Identifier: Formal symbols or reference codes for unique identification.
|
|
CIDOC-CRM P48_has_preferred_identifier: Links E1_CRM_Entity (Custodian) to E42_Identifier.
|
|
**Use for**:
|
|
- External authority identifiers (ISIL, Wikidata, VIAF, KvK, ROR)
|
|
- Registration numbers and codes
|
|
- Persistent identifiers from registries
|
|
**Connection to Hub**:
|
|
- The Custodian hub uses crm:P48_has_preferred_identifier to point to CustodianIdentifier
|
|
- This CustodianIdentifier uses crm:P48i_is_preferred_identifier_of to point back to the Custodian hub
|
|
- Enables multiple identifiers per custodian (from different authorities)
|
|
**Extended Provenance (v2)**:
|
|
The identifier now tracks its full lineage:
|
|
- has_standard: Which Standard defines this identifier type (ISIL → ISO 15511)
|
|
- allocated_by: Which AllocationAgency assigned this specific identifier
|
|
- identifier_format_used: Which format variant is used in identifier_value
|
|
- has_canonical_form: Normalized form (CanonicalForm) for deduplication and matching
|
|
- allocation_date: When the identifier was assigned
|
|
**Dual-Purpose Identifiers**:
|
|
Some identifiers (ISNI, VIAF) also identify name authority records:
|
|
- has_secondary_label: Links to the CustodianName record this identifier also identifies (as a Label)
|
|
**Enables**:
|
|
- External identifier management (scheme + value)
|
|
- Cross-reference to authority registries
|
|
- Persistent identifier resolution
|
|
- Inter-dataset linking
|
|
- Full provenance tracking (who allocated, when, under what standard)
|
|
- Name authority linkage (for ISNI, VIAF)
|
|
exact_mappings:
|
|
- crm:E42_Identifier
|
|
close_mappings:
|
|
- schema:identifier
|
|
- adms:Identifier
|
|
- skos:notation
|
|
related_mappings:
|
|
- owl:sameAs
|
|
slots:
|
|
- allocated_by
|
|
- allocated_through
|
|
slot_usage:
|
|
allocated_through:
|
|
range: AllocationEvent
|
|
examples:
|
|
- value:
|
|
temporal_extent:
|
|
begin_of_the_begin: "2023-01-01"
|
|
# MIGRATED 2026-01-24: defined_by_standard → has_standard + Standard (Rule 53)
|
|
has_standard:
|
|
# range: string
|
|
required: false
|
|
multivalued: false
|
|
inlined: false
|
|
examples:
|
|
- value:
|
|
name: "International Standard Identifier for Libraries"
|
|
allocated_by:
|
|
required: false
|
|
has_canonical_form:
|
|
range: CanonicalForm
|
|
required: false
|
|
multivalued: false
|
|
inlined: true
|
|
# identifies_custodian REMOVED - migrated to identifies_or_identified (Rule 53)
|
|
identified_by:
|
|
range: Custodian
|
|
required: false
|
|
annotations:
|
|
specificity_score: 0.30
|
|
specificity_rationale: |
|
|
Slightly higher specificity than generic Identifier due to
|
|
heritage custodian-specific provenance tracking.
|