- Created new YAML files for audience size and audience type slots, defining their properties and annotations. - Added archived capacity slots including cubic meters, linear meters, item count, and descriptions, with appropriate URIs and ranges. - Introduced a template specificity slot for context-aware RAG filtering. - Consolidated capacity-related slots into a unified structure, including has_or_had_capacity, capacity_type, and capacity_value, with detailed descriptions and examples.
28 lines
825 B
YAML
28 lines
825 B
YAML
# Language - Language class
|
|
id: https://nde.nl/ontology/hc/class/Language
|
|
name: Language
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
dct: http://purl.org/dc/terms/
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_or_had_code
|
|
classes:
|
|
Language:
|
|
class_uri: dct:LinguisticSystem
|
|
description: A language with ISO codes
|
|
slots:
|
|
- has_or_had_code
|
|
attributes:
|
|
language_name:
|
|
range: string
|
|
description: |
|
|
Human-readable name of the language (e.g., "English", "Dutch", "French").
|
|
Parsed from raw string, not authoritative. Use ISO codes for formal identification.
|
|
iso_639_1:
|
|
range: string
|
|
description: ISO 639-1 two-letter code
|
|
iso_639_3:
|
|
range: string
|
|
description: ISO 639-3 three-letter code
|