Enhance Audiovisual Archive and Audit Schema Definitions

- Updated AudiovisualArchive class with detailed descriptions and multilingual support for various languages.
- Added examples, mappings, and structured aliases for better integration with external vocabularies.
- Introduced new slots for has_label and has_description in AudiovisualArchive and AudiovisualArchiveRecordSetType.
- Expanded AudiovisualArchiveRecordSetType with comprehensive descriptions and examples for subclasses.
- Enhanced Audit class with detailed descriptions, examples, and multilingual support.
- Introduced AuditOpinion class with standardized opinion types and descriptions.
- Updated Auditor class to include detailed descriptions, examples, and keywords for better clarity on roles.
This commit is contained in:
kempersc 2026-02-15 00:57:44 +01:00
parent d356aa77b7
commit 1fe1d1ad0b
61 changed files with 6411 additions and 1559 deletions

View file

@ -1,5 +1,5 @@
{
"generated": "2026-02-14T22:09:30.699Z",
"generated": "2026-02-14T22:59:33.420Z",
"schemaRoot": "/schemas/20251121/linkml",
"totalFiles": 2369,
"categoryCounts": {

View file

@ -1,5 +1,5 @@
{
"generated": "2026-02-14T22:59:33.420Z",
"generated": "2026-02-14T23:57:44.363Z",
"schemaRoot": "/schemas/20251121/linkml",
"totalFiles": 2369,
"categoryCounts": {

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/ApproximationStatus
name: approximation_status_class
title: ApproximationStatus Class
title: Approximation Status Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -8,6 +8,7 @@ prefixes:
crm: http://www.cidoc-crm.org/cidoc-crm/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
imports:
- linkml:types
- ../metadata
@ -15,18 +16,63 @@ imports:
- ../slots/has_label
- ../slots/has_level
- ../slots/has_score
default_prefix: hc
classes:
ApproximationStatus:
class_uri: hc:ApproximationStatus
description: "Status indicating the level of approximation or uncertainty for a value.\n**PURPOSE**:\nApproximationStatus captures structured uncertainty information for values like dates, quantities, and measurements where precision varies. This replaces simple boolean \"approximate: true/false\" with richer modeling.\n**UNCERTAINTY LEVELS**:\n| Level | Label | Description | Example | |-------|-------|-------------|---------| | EXACT | Exact | Known with certainty | \"1880-03-15\" | | APPROXIMATE | Approximate | Close but not exact | \"circa 1880\" | | ESTIMATED | Estimated | Calculated/inferred | \"estimated 1875-1885\" | | UNCERTAIN | Uncertain | Significant doubt | \"possibly 19th century\" | | UNKNOWN | Unknown | Cannot be determined | \"date unknown\" |\n**CIDOC-CRM ALIGNMENT**:\nCIDOC-CRM models time-span precision through E52_Time-Span with fuzzy boundaries. ApproximationStatus provides a complementary vocabulary for expressing certainty levels.\n**USE CASES**:\n1. **Date Uncertainty**:\
\ Founding dates known only to decade 2. **Quantity Estimates**: Collection size approximations 3. **Location Precision**: Address known only to city level 4. **Historical Events**: Uncertain timing of organizational changes\n**EXAMPLE**:\n```yaml event_date: \"1880\" approximate:\n has_level: APPROXIMATE # was: approximation_level\n has_label: \"circa 1880\"\n has_description: \"Founding date known only to year from secondary sources\"\n```"
exact_mappings:
- crm:E52_Time-Span
description: >-
Indicator expressing the degree of precision or certainty for a value
such as dates, quantities, or measurements, replacing simple boolean
flags with structured uncertainty information.
alt_descriptions:
nl: >-
Indicator die de mate van precisie of zekerheid voor een waarde uitdrukt,
zoals datums, hoeveelheden of metingen, ter vervanging van eenvoudige
booleaanse vlaggen door gestructureerde onzekerheidsinformatie.
de: >-
Indikator, der den Genauigkeits- oder Gewissheitsgrad fur einen Wert
wie Datum, Mengen oder Messungen ausdruckt und einfache boolesche
Flags durch strukturierte Unsicherheitsinformationen ersetzt.
fr: >-
Indicateur exprimant le degre de precision ou de certitude d'une valeur
telle que des dates, quantites ou mesures, remplaçant les simples
indicateurs booleens par des informations d'incertitude structurees.
es: >-
Indicador que expresa el grado de precision o certeza de un valor
como fechas, cantidades o mediciones, reemplazando simples indicadores
booleanos con informacion de incertidumbre estructurada.
ar: >-
مؤشر يعبر عن درجة الدقة أو اليقين لقيمة مثل التواريخ أو الكميات
أو القياسات، ليحل محل العلامات المنطقية البسيطة بمعلومات عدم
اليقين المنظمة.
id: >-
Indikator yang menyatakan tingkat presisi atau kepastian untuk nilai
seperti tanggal, kuantitas, atau pengukuran, mengganti bendera boolean
sederhana dengan informasi ketidakpastian yang terstruktur.
zh: >-
表示日期、数量或测量等值的精度或确定性程度的指标,用结构化的不确定性
信息替代简单的布尔标志。
structured_aliases:
- literal_form: benaderingsstatus
in_language: nl
- literal_form: Approximationsstatus
in_language: de
- literal_form: statut d'approximation
in_language: fr
- literal_form: estado de aproximacion
in_language: es
- literal_form: حالة التقريب
in_language: ar
- literal_form: status aproksimasi
in_language: id
- literal_form: 近似状态
in_language: zh
close_mappings:
- crm:E52_Time-Span
- rico:DateType
related_mappings:
- skos:note
broad_mappings:
- skos:Concept
slots:
- has_level
- has_label
@ -34,52 +80,71 @@ classes:
- has_score
slot_usage:
has_level:
# range: string
required: true
has_label:
# range: string
required: false
examples:
- value: circa 1880
- value: approximately 10,000
has_description:
# range: string
required: false
examples:
- value: Founding date derived from secondary sources, exact day unknown
comments:
- ApproximationStatus replaces simple boolean approximate field
- Provides structured uncertainty modeling for dates, quantities, etc.
- Aligned with CIDOC-CRM E52_Time-Span precision concepts
- Used by approximate slot
- Replaces simple boolean approximate field with structured uncertainty modeling
- Supports EXACT, APPROXIMATE, ESTIMATED, UNCERTAIN, and UNKNOWN levels
- Used by approximate slot for dates, quantities, and measurements
- Complements CIDOC-CRM E52_Time-Span fuzzy boundary concepts
see_also:
- https://www.cidoc-crm.org/Entity/e52-time-span/version-7.1.3
examples:
- value:
has_level: EXACT
has_label: '1880-03-15'
has_label: "1880-03-15"
has_score: 1.0
description: Exact date known with certainty
- value:
has_level: APPROXIMATE
has_label: circa 1880
has_description: Founding date known only to year from newspaper accounts
has_score: 0.7
description: Approximate date (circa)
- value:
has_level: ESTIMATED
has_label: estimated 1875-1885
has_description: Date range inferred from building construction records
has_score: 0.5
description: Estimated date range
- value:
has_level: UNKNOWN
has_label: date unknown
has_description: No founding records survive
has_score: 0.0
description: Unknown date
keywords:
- approximation
- uncertainty
- precision
- certainty
- circa
- estimated
- exact
- unknown
annotations:
specificity_score: 0.3
specificity_rationale: Approximation status is broadly useful across contexts where uncertainty needs to be expressed.
specificity_score: "0.4"
specificity_rationale: Broadly useful across contexts where uncertainty needs expression
custodian_types: "['*']"
enums:
ApproximationLevelEnum:
description: Levels of approximation/uncertainty for values.
permissible_values:
EXACT:
description: Known with certainty
APPROXIMATE:
description: Close but not exact
ESTIMATED:
description: Calculated or inferred
UNCERTAIN:
UNKNOWN:
description: Significant doubt exists
UNKNOWN:
description: Cannot be determined

View file

@ -1,23 +1,99 @@
id: https://nde.nl/ontology/hc/class/Archdiocese
name: Archdiocese
title: Archdiocese
description: An archdiocese.
title: Archdiocese 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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_label
- ../slots/has_description
- ../slots/identified_by
classes:
Archdiocese:
class_uri: schema:AdministrativeArea
description: An archdiocese.
class_uri: hc:Archdiocese
description: >-
Ecclesiastical territorial jurisdiction headed by an archbishop,
typically comprising multiple dioceses and maintaining archives
of religious, administrative, and sacramental records.
alt_descriptions:
nl: >-
Kerkelijk territoriale rechtsbevoegdheid onder leiding van een aartsbisschop,
doorgaans bestaande uit meerdere bisdommen en bewaarder van archieven met
religieuze, administratieve en sacramentele akten.
de: >-
Kirchliche territoriale Rechtsbefugnis unter der Leitung eines Erzbischofs,
typischerweise bestehend aus mehreren Diözesen und verwahrt Archive mit
religiösen, administrativen und sakramentalen Unterlagen.
fr: >-
Juridiction territoriale ecclesiastique dirige par un archeveque,
comprenant generalement plusieurs dioceses et conservant des archives
de documents religieux, administratifs et sacramentels.
es: >-
Jurisdiccion territorial eclesiastica encabezada por un arzobispo,
que generalmente comprende multiples diocesis y mantiene archivos de
registros religiosos, administrativos y sacramentales.
ar: >-
ولاية إقليمية كنسية يرأسها رئيس أساقفة، وتتضمن عادة عدة أبرشيات
وتحتفظ بأرشيفات من السجلات الدينية والإدارية والسرية.
id: >-
Yurisdiksi teritorial gerejawi yang dipimpin oleh uskup agung, biasanya
terdiri dari beberapa keuskupan dan memelihara arsip catatan keagamaan,
administratif, dan sakramental.
zh: >-
由大主教领导的教会管辖区,通常包含多个教区并保存宗教、行政
和圣事记录的档案。
structured_aliases:
- literal_form: aartsbisdom
in_language: nl
- literal_form: Erzbistum
in_language: de
- literal_form: archeveche
in_language: fr
- literal_form: arquidiocesis
in_language: es
- literal_form: أبرشية كبرى
in_language: ar
- literal_form: keuskupan agung
in_language: id
- literal_form: 总教区
in_language: zh
broad_mappings:
- schema:AdministrativeArea
- schema:Organization
close_mappings:
- rico:CorporateBody
related_mappings:
- wd:Q185621
slots:
- has_label
- has_description
- identified_by
comments:
- Ecclesiastical administrative unit in Catholic and Anglican traditions
- Maintains diocesan archives with baptismal, marriage, and death records
- Often a significant source for genealogical and historical research
see_also:
- Diocese
- EcclesiasticalArchive
examples:
- value:
has_label: "Archdiocese of Cologne"
identified_by: "https://www.wikidata.org/wiki/Q6526"
description: German archdiocese with extensive medieval archives
keywords:
- archdiocese
- ecclesiastical
- archbishop
- diocese
- church archives
- sacramental records
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to ecclesiastical territorial administration
custodian_types: "['EcclesiasticalArchive']"

View file

@ -10,9 +10,6 @@ prefixes:
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
skos: http://www.w3.org/2004/02/skos/core#
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
default_prefix: hc
imports:
- linkml:types
@ -21,15 +18,61 @@ imports:
- ../slots/has_label
classes:
Architect:
class_uri: schema:Person
description: 'An architect or architectural firm.
**Ontological Alignment**:
- `schema:Person` (or Organization)
'
class_uri: hc:Architect
description: >-
Individual or firm professionally engaged in the design and planning
of buildings and structures, often documented in architectural archives
through drawings, plans, and project documentation.
alt_descriptions:
nl: >-
Persoon of bedrijf die professioneel betrokken is bij het ontwerp en de
planning van gebouwen en constructies, vaak gedocumenteerd in architectuur-
archieven via tekeningen, plannen en projectdocumentatie.
de: >-
Person oder Firma, die beruflich mit dem Entwurf und der Planung von
Gebauden und Bauwerken befasst ist, oft dokumentiert in Architekturarchiven
durch Zeichnungen, Plane und Projektdokumentation.
fr: >-
Personne ou firme professionnellement engagee dans la conception et la
planification de batiments et de structures, souvent documentee dans les
archives architecturales par des dessins, plans et documentation de projet.
es: >-
Persona o firma dedicada profesionalmente al diseno y planificacion de
edificios y estructuras, a menudo documentada en archivos de arquitectura
a traves de dibujos, planos y documentacion de proyectos.
ar: >-
فرد أو شركة تعمل بشكل احترافي في تصميم وتخطيط المباني والهياكل،
وغالبًا ما يتم توثيقها في أرشيفات معمارية من خلال الرسومات والخطط
ووثائق المشاريع.
id: >-
Individu atau firma yang secara profesional terlibat dalam desain dan
perencanaan bangunan dan struktur, sering didokumentasikan dalam arsip
arsitektur melalui gambar, denah, dan dokumentasi proyek.
zh: >-
专业从事建筑物和结构设计与规划的个人或公司,通常通过图纸、平面图
和项目文档在建筑档案中记录。
structured_aliases:
- literal_form: architect
in_language: nl
- literal_form: Architekt
in_language: de
- literal_form: architecte
in_language: fr
- literal_form: arquitecto
in_language: es
- literal_form: مهندس معماري
in_language: ar
- literal_form: arsitek
in_language: id
- literal_form: 建筑师
in_language: zh
broad_mappings:
- schema:Person
- schema:Organization
- foaf:Person
- foaf:Agent
related_mappings:
- crm:E39_Actor
slots:
- has_label
- has_description
@ -37,7 +80,32 @@ classes:
slot_usage:
has_label:
required: true
comments:
- Role class for architects as agents in heritage documentation
- Can represent individual architects or architectural firms
- Linked to architectural drawings and building documentation
- Often associated with ArchitecturalArchive holdings
see_also:
- ArchitecturalArchive
- ArchitecturalStyle
examples:
- value:
has_label: "Gerrit Rietveld"
identified_by: "https://www.wikidata.org/wiki/Q160680"
has_description: "Dutch architect and furniture designer"
description: Individual architect
- value:
has_label: "Office for Metropolitan Architecture (OMA)"
identified_by: "https://www.wikidata.org/wiki/Q132805"
has_description: "International architectural firm founded by Rem Koolhaas"
description: Architectural firm
keywords:
- architect
- architectural firm
- building design
- architectural drawings
- project documentation
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.4"
specificity_rationale: Role class for architectural agents
custodian_types: "['ArchitecturalArchive']"

View file

@ -3,6 +3,12 @@ name: ArchitecturalArchive
title: Architectural Archive Type
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/identified_by
@ -13,32 +19,101 @@ imports:
classes:
ArchitecturalArchive:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
class_uri: schema:ArchiveOrganization
description: >-
Institution dedicated to preserving architectural heritage through
the custody of drawings, plans, models, specifications, and related
documentation created by architects and architectural firms.
alt_descriptions:
nl: >-
Instelling die zich wijdt aan het behoud van architectonisch erfgoed
door de bewaring van tekeningen, plannen, modellen, specificaties en
gerelateerde documentatie gemaakt door architecten en architectenbureaus.
de: >-
Einrichtung, die sich der Bewahrung des architektonischen Erbes widmet
durch die Verwahrung von Zeichnungen, Plänen, Modellen, Spezifikationen
und verwandter Dokumentation, die von Architekten und Architekturburos
erstellt wurden.
fr: >-
Institution dediee a la preservation du patrimoine architectural par
la garde de dessins, plans, maquettes, specifications et documentation
connexe crees par des architectes et cabinets d'architectes.
es: >-
Institucion dedicada a preservar el patrimonio arquitectonico a traves
de la custodia de dibujos, planos, maquetas, especificaciones y
documentacion relacionada creada por arquitectos y firmas de arquitectura.
ar: >-
مؤسسة مكرسة للحفاظ على التراث المعماري من خلال حيازة الرسومات والخطط
والنماذج والمواصفات والوثائق ذات الصلة التي أنشأها المعماريون
والشركات المعمارية.
id: >-
Lembaga yang berdedikasi untuk melestarikan warisan arsitektur melalui
pengawasan gambar, denah, model, spesifikasi, dan dokumentasi terkait
yang dibuat oleh arsitek dan firma arsitektur.
zh: >-
专门通过保管建筑师和建筑公司创建的图纸、平面图、模型、规格和
相关文档来保护建筑遗产的机构。
structured_aliases:
- literal_form: architectonisch archief
in_language: nl
- literal_form: Architekturarchiv
in_language: de
- literal_form: archives architecturales
in_language: fr
- literal_form: archivo arquitectonico
in_language: es
- literal_form: أرشيف معماري
in_language: ar
- literal_form: arsip arsitektur
in_language: id
- literal_form: 建筑档案馆
in_language: zh
exact_mappings:
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
broad_mappings:
- skos:Concept
related_mappings:
- wd:Q121409581
slots:
- has_type
- hold_record_set
- has_score
description: "Archive that safeguards architectural heritage through preservation of \narchitectural drawings, plans, models, and related documentation.\n\n**Wikidata**: Q121409581\n\n**Scope**:\nArchitectural archives preserve:\n- Architectural drawings and blueprints\n- Building plans and specifications\n- Scale models and maquettes\n- Photographs of buildings and construction\n- Correspondence and contracts\n- Architects' personal papers (Nachlass)\n- Design competitions documentation\n\n**Related Types**:\n- ArchivesForBuildingRecords (Q136027937) - Public building permits/records\n- ArtArchive (Q27032254) - Broader art documentation\n\n**Notable Examples**:\n- Canadian Centre for Architecture (CCA)\n- Deutsches Architekturmuseum archives\n- RIBA Architecture Library and Collections\n- Het Nieuwe Instituut (Netherlands)\n\n**Dual-Class Pattern**:\nThis class represents the CUSTODIAN type (the archive organization).\nFor the collection type, see `ArchitecturalRecordSetType` (rico:RecordSetType).\n\
\n**Ontological Alignment**:\n- **SKOS**: skos:Concept with skos:broader Q166118 (archive)\n- **Schema.org**: schema:ArchiveOrganization\n- **RiC-O**: rico:CorporateBody (as agent)\n\n**Multilingual Labels**:\n- de: Architekturarchiv\n- fr: archives architecturales\n- nl: architectonisch archief\n"
- identified_by
- related_to
slot_usage:
identified_by:
pattern: ^Q[0-9]+$
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
exact_mappings:
- skos:Concept
close_mappings:
- schema:ArchiveOrganization
- rico:CorporateBody
equals_string: "hc:ArchiveOrganizationType"
comments:
- Specialized archive for architectural documentation and heritage
- Often associated with architecture schools, museums, or professional bodies
- 'Part of dual-class pattern: custodian type + rico:RecordSetType'
- May overlap with art archives when preserving architects' artistic works
- Part of dual-class pattern with ArchitecturalArchiveRecordSetType
- Preserves drawings, blueprints, models, photographs, and architects' papers
see_also:
- ArchivesForBuildingRecords
- ArtArchive
- ArchitecturalArchiveRecordSetType
- Architect
- ArchitecturalStyle
examples:
- value:
has_type: hc:ArchiveOrganizationType
identified_by: Q121409581
has_score: 1.0
hold_record_set:
- hc:ArchitecturalDrawingCollection
- hc:ArchitectPapersCollection
description: Architectural archive with drawings and papers collections
keywords:
- architectural archive
- architectural drawings
- blueprints
- building plans
- architects' papers
- scale models
- maquettes
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to architectural heritage archives
custodian_types: "['ArchitecturalArchive']"

View file

@ -1,30 +1,98 @@
id: https://nde.nl/ontology/hc/class/ArchitecturalArchiveRecordSetType
name: ArchitecturalArchiveRecordSetType
title: ArchitecturalArchive Record Set Type
title: Architectural Archive Record Set Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
wd: http://www.wikidata.org/entity/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_score
- ../slots/related_to
classes:
ArchitecturalArchiveRecordSetType:
description: A rico:RecordSetType for classifying collections of architectural archive materials within heritage institutions.
description: >-
Category for grouping architectural archive materials accumulated
by heritage institutions, including drawings, plans, models,
photographs, and related documentation.
alt_descriptions:
nl: >-
Categorie voor het groeperen van architectuurarchiefmateriaal verzameld
door erfgoedinstellingen, waaronder tekeningen, plannen, modellen,
foto's en gerelateerde documentatie.
de: >-
Kategorie zur Gruppierung von Architekturarchivmaterial, das von
Kulturerbeinstitutionen gesammelt wurde, einschliesslich Zeichnungen,
Plane, Modelle, Fotos und verwandte Dokumentation.
fr: >-
Categorie pour regrouper les materiaux d'archives architecturales
accumules par les institutions patrimoniales, y compris les dessins,
plans, maquettes, photographies et documentation connexe.
es: >-
Categoria para agrupar materiales de archivo arquitectonico acumulados
por instituciones patrimoniales, incluyendo dibujos, planos, maquetas,
fotografias y documentacion relacionada.
ar: >-
فئة لتجميع مواد أرشيفية معمارية تجمعتها مؤسسات التراث، بما في ذلك
الرسومات والخطط والنماذج والصور والوثائق ذات الصلة.
id: >-
Kategori untuk mengelompokkan materi arsip arsitektur yang dikumpulkan
oleh lembaga warisan budaya, termasuk gambar, denah, model, foto,
dan dokumentasi terkait.
zh: >-
用于分组遗产机构积累的建筑档案材料的类别,包括图纸、平面图、
模型、照片和相关文档。
structured_aliases:
- literal_form: architectuurarchiefbestandtype
in_language: nl
- literal_form: Architekturarchivbestandstyp
in_language: de
- literal_form: type de fonds d'archives architecturales
in_language: fr
- literal_form: tipo de fondo de archivo arquitectonico
in_language: es
- literal_form: نوع مجموعة الأرشيف المعماري
in_language: ar
- literal_form: tipe kumpulan arsip arsitektur
in_language: id
- literal_form: 建筑档案集类型
in_language: zh
is_a: CollectionType
class_uri: rico:RecordSetType
exact_mappings:
close_mappings:
- wd:Q121409581
broad_mappings:
- rico:RecordSetType
- skos:Concept
slot_usage:
related_to:
range: WikidataAlignment
inlined: true
see_also:
- ArchitecturalArchive
- ArchitecturalArchiveRecordSetTypes
slots:
- has_score
- related_to
comments:
- Part of dual-class pattern with ArchitecturalArchive custodian type
- Follows RiC-O RecordSetType classification principles
- Subclasses include ArchitecturalDrawingCollection, ArchitectPapersCollection, BuildingProjectFonds
examples:
- value:
has_type: hc:ArchitecturalDrawingCollection
has_score: 1.0
description: Architectural drawings record set type
keywords:
- architectural drawings
- building plans
- architects' papers
- architectural models
- building project documentation
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to architectural archive collection types
custodian_types: "['ArchitecturalArchive']"

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/ArchitecturalArchiveRecordSetTypes
name: ArchitecturalArchiveRecordSetTypes
title: ArchitecturalArchive Record Set Type Subclasses
title: Architectural Archive Record Set Type Subclasses
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -9,12 +9,6 @@ prefixes:
rico: https://www.ica.org/standards/RiC/ontology#
rico-rst: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#
wd: http://www.wikidata.org/entity/
dcterms: http://purl.org/dc/terms/
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
default_prefix: hc
imports:
- ./ArchitecturalArchiveRecordSetType
@ -27,15 +21,50 @@ classes:
ArchitecturalDrawingCollection:
is_a: ArchitecturalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Architectural plans and drawings.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
description: >-
Collection of architectural plans, drawings, blueprints, and related
technical documentation created during the building design process.
alt_descriptions:
nl: >-
Collectie van architectuurplannen, tekeningen, blauwdrukken en gerelateerde
technische documentatie gemaakt tijdens het bouwontwerpproces.
de: >-
Sammlung von Architekturplänen, Zeichnungen, Blaupausen und verwandter
technischer Dokumentation, die während des Gebäudeentwurfsprozesses erstellt wurde.
fr: >-
Collection de plans architecturaux, dessins, bleus et documentation
technique connexe crees pendant le processus de conception du batiment.
es: >-
Coleccion de planos arquitectonicos, dibujos, planos azules y documentacion
tecnica relacionada creada durante el proceso de diseno del edificio.
ar: >-
مجموعة من المخططات المعمارية والرسومات والطبقات الزرقاء والوثائق
التقنية ذات الصلة التي تم إنشاؤها خلال عملية تصميم المبنى.
id: >-
Koleksi denah arsitektur, gambar, cetak biru, dan dokumentasi teknis
terkait yang dibuat selama proses desain bangunan.
zh: >-
在建筑设计过程中创建的建筑平面图、图纸、蓝图和相关技术文档的集合。
structured_aliases:
- literal_form: architectuurtekeningencollectie
in_language: nl
- literal_form: Architekturzeichnungssammlung
in_language: de
- literal_form: collection de dessins d'architecture
in_language: fr
- literal_form: coleccion de dibujos arquitectonicos
in_language: es
- literal_form: مجموعة الرسومات المعمارية
in_language: ar
- literal_form: koleksi gambar arsitektur
in_language: id
- literal_form: 建筑图纸收藏
in_language: zh
broad_mappings:
- rico:RecordSetType
- skos:Concept
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
see_also:
- ArchitecturalArchiveRecordSetType
- rico:RecordSetType
@ -43,34 +72,82 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: ArchitecturalDrawingCollection
has_custodian:
equals_string: ArchitecturalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArchitecturalArchive
custodians. Inverse of rico:isOrWasHolderOf.
comments:
- Follows RiC-O collection organizational principle
- Typically held by ArchitecturalArchive custodians
examples:
- value:
has_type: ArchitecturalDrawingCollection
has_score: 1.0
description: Architectural drawings collection
keywords:
- architectural drawings
- blueprints
- plans
- technical documentation
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.5"
specificity_rationale: Specific to architectural drawing collections
custodian_types: "['ArchitecturalArchive']"
ArchitectPapersCollection:
is_a: ArchitecturalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Architect personal papers.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
description: >-
Collection of personal and professional papers of individual architects
or architectural firms, including correspondence, project files,
sketches, and business records.
alt_descriptions:
nl: >-
Collectie van persoonlijke en professionele paperassen van individuele
architecten of architectenbureaus, inclusief correspondentie, projectbestanden,
schetsen en zakelijke administratie.
de: >-
Sammlung von persönlichen und beruflichen Unterlagen einzelner Architekten
oder Architekturburos, einschließlich Korrespondenz, Projektakten,
Skizzen und Geschäftsunterlagen.
fr: >-
Collection de papiers personnels et professionnels d'architectes
individuels ou de cabinets d'architectes, y compris la correspondance,
les dossiers de projet, les croquis et les documents commerciaux.
es: >-
Coleccion de papeles personales y profesionales de arquitectos individuales
o firmas de arquitectura, incluyendo correspondencia, archivos de proyectos,
bocetos y registros comerciales.
ar: >-
مجموعة من الأوراق الشخصية والمهنية للمعماريين الأفراد أو الشركات
المعمارية، بما في ذلك المراسلات وملفات المشاريع والرسومات وسجلات الأعمال.
id: >-
Koleksi arsip pribadi dan profesional arsitek individu atau firma
arsitektur, termasuk korespondensi, file proyek, sketsa, dan catatan bisnis.
zh: >-
个人建筑师或建筑公司的个人和专业文件集合,包括信函、项目文件、
草图和商业记录。
structured_aliases:
- literal_form: architectenpapierencollectie
in_language: nl
- literal_form: Architektennachlass
in_language: de
- literal_form: collection de papiers d'architectes
in_language: fr
- literal_form: coleccion de papeles de arquitectos
in_language: es
- literal_form: مجموعة أوراق المعماريين
in_language: ar
- literal_form: koleksi arsip arsitek
in_language: id
- literal_form: 建筑师文件收藏
in_language: zh
broad_mappings:
- rico:RecordSetType
- skos:Concept
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
see_also:
- ArchitecturalArchiveRecordSetType
- rico:RecordSetType
@ -78,32 +155,83 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: ArchitectPapersCollection
has_custodian:
equals_string: ArchitecturalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArchitecturalArchive
custodians. Inverse of rico:isOrWasHolderOf.
comments:
- Follows RiC-O collection organizational principle
- Often called Nachlass in German-speaking contexts
examples:
- value:
has_type: ArchitectPapersCollection
has_score: 1.0
description: Architect personal papers collection
keywords:
- architect papers
- nachlass
- correspondence
- project files
- sketches
annotations:
custodian_types: '[''*'']'
specificity_score: "0.5"
specificity_rationale: Specific to architect papers collections
custodian_types: "['ArchitecturalArchive']"
BuildingProjectFonds:
is_a: ArchitecturalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Building project documentation.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: >-
Fonds of documentation related to specific building projects,
including contracts, specifications, correspondence, progress reports,
and completion records.
alt_descriptions:
nl: >-
Fonds van documentatie met betrekking tot specifieke bouwprojecten,
inclusief contracten, specificaties, correspondentie, voortgangsverslagen
en opleveringsdocumenten.
de: >-
Bestand von Dokumentation zu spezifischen Bauprojekten, einschließlich
Verträgen, Spezifikationen, Korrespondenz, Fortschrittsberichten und
Fertigstellungsunterlagen.
fr: >-
Fonds de documentation relative a des projets de construction specifiques,
y compris les contrats, specifications, correspondance, rapports d'avancement
et dossiers d'achevement.
es: >-
Fondo de documentacion relacionada con proyectos de construccion especificos,
incluyendo contratos, especificaciones, correspondencia, informes de progreso
y registros de finalizacion.
ar: >-
أرشيف وثائق متعلقة بمشاريع بناء محددة، بما في ذلك العقود والمواصفات
والمراسلات وتقارير التقدم وسجلات الإنجاز.
id: >-
Fonds dokumentasi terkait proyek konstruksi spesifik, termasuk kontrak,
spesifikasi, korespondensi, laporan kemajuan, dan catatan penyelesaian.
zh: >-
与特定建筑项目相关的文档档案,包括合同、规格、信函、进度报告
和竣工记录。
structured_aliases:
- literal_form: bouwprojectfonds
in_language: nl
- literal_form: Bauprojektbestand
in_language: de
- literal_form: fonds de projet de construction
in_language: fr
- literal_form: fondo de proyecto de construccion
in_language: es
- literal_form: أرشيف مشروع البناء
in_language: ar
- literal_form: fonds proyek bangunan
in_language: id
- literal_form: 建筑项目档案
in_language: zh
broad_mappings:
- rico:RecordSetType
- skos:Concept
related_mappings:
- rico-rst:Fonds
close_mappings:
- skos:Concept
see_also:
- ArchitecturalArchiveRecordSetType
- rico:RecordSetType
@ -111,17 +239,27 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: BuildingProjectFonds
has_custodian:
equals_string: ArchitecturalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArchitecturalArchive
custodians. Inverse of rico:isOrWasHolderOf.
comments:
- Follows RiC-O fonds organizational principle
- Represents complete documentation for a single building project
examples:
- value:
has_type: BuildingProjectFonds
has_score: 1.0
description: Building project documentation fonds
keywords:
- building project
- construction documentation
- contracts
- specifications
- project records
annotations:
custodian_types: '[''*'']'
specificity_score: "0.5"
specificity_rationale: Specific to building project documentation
custodian_types: "['ArchitecturalArchive']"

View file

@ -1,27 +1,106 @@
id: https://nde.nl/ontology/hc/class/ArchitecturalStyle
name: ArchitecturalStyle
title: Architectural Style
description: An architectural style.
title: Architectural Style 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#
rico: https://www.ica.org/standards/RiC/ontology#
crm: http://www.cidoc-crm.org/cidoc-crm/
aat: http://vocab.getty.edu/aat/
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_description
- ../slots/has_label
- ../slots/identified_by
classes:
ArchitecturalStyle:
class_uri: skos:Concept
exact_mappings:
- crm:E55_Type
description: An architectural style.
class_uri: hc:ArchitecturalStyle
description: >-
Distinctive mode of building design characterized by specific
features, materials, forms, and ornamental details associated
with particular periods, regions, or movements.
alt_descriptions:
nl: >-
Onderscheidende modus van bouwontwerp gekenmerkt door specifieke kenmerken,
materialen, vormen en ornamentale details geassocieerd met bepaalde perioden,
regio's of stromingen.
de: >-
Unterschiedlicher Modus des Gebäudeentwurfs, der durch spezifische Merkmale,
Materialien, Formen und ornamentale Details gekennzeichnet ist, die mit
bestimmten Perioden, Regionen oder Bewegungen verbunden sind.
fr: >-
Mode distinctif de conception de batiments caracterise par des caracteristiques
specifiques, materiaux, formes et details ornamentaux associes a des periodes,
regions ou mouvements particuliers.
es: >-
Modo distintivo de diseno de edificios caracterizado por caracteristicas
especificas, materiales, formas y detalles ornamentales asociados con
periodos, regiones o movimientos particulares.
ar: >-
نمط مميز من تصميم المباني يتميز بخصائص ومواد وأشكال وتفاصيل زخرفية
محددة مرتبطة بفترات أو مناطق أو حركات معينة.
id: >-
Mode khas desain bangunan yang dicirikan oleh fitur, bahan, bentuk,
dan detail ornamental tertentu yang terkait dengan periode, wilayah,
atau gerakan tertentu.
zh: >-
以与特定时期、地区或运动相关的特定特征、材料、形式和装饰细节
为特征的独特建筑设计模式。
structured_aliases:
- literal_form: architectuurstijl
in_language: nl
- literal_form: Architekturstil
in_language: de
- literal_form: style architectural
in_language: fr
- literal_form: estilo arquitectonico
in_language: es
- literal_form: الطراز المعماري
in_language: ar
- literal_form: gaya arsitektur
in_language: id
- literal_form: 建筑风格
in_language: zh
broad_mappings:
- crm:E55_Type
- skos:Concept
related_mappings:
- aat:300015646
slots:
- has_label
- has_description
- identified_by
comments:
- Classification for architectural design movements and periods
- Examples: Gothic, Baroque, Art Deco, Brutalism, Modernism
- Linked to architectural drawings and building documentation
- Often aligned with Getty AAT architectural style terms
see_also:
- Architect
- ArchitecturalArchive
examples:
- value:
has_label: "Art Deco"
has_description: "Decorative style popular in the 1920s-1930s"
identified_by: "https://www.wikidata.org/wiki/Q44539"
description: Art Deco architectural style
- value:
has_label: "Gothic"
has_description: "Medieval architectural style emphasizing verticality and light"
identified_by: "https://www.wikidata.org/wiki/Q46761"
description: Gothic architectural style
keywords:
- architectural style
- design movement
- building style
- Gothic
- Baroque
- Modernism
- Brutalism
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.4"
specificity_rationale: Type classification for architectural design modes
custodian_types: "['ArchitecturalArchive']"

View file

@ -1,45 +1,116 @@
id: https://nde.nl/ontology/hc/class/ArchivalLibrary
name: ArchivalLibrary
title: Archival Library Type
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
org: http://www.w3.org/ns/org#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_score
- ../slots/has_type
- ../slots/branch_of
- ../slots/related_to
- ../slots/has_label
classes:
ArchivalLibrary:
is_a: OrganizationBranch
class_uri: org:OrganizationalUnit
description: "Library that is part of or associated with an archive, providing reference \nmaterials and published works to support archival research.\n\n**Wikidata**: Q25504402\n\n**IMPORTANT: This is an OrganizationBranch, NOT a standalone CustodianType**\n\nArchival libraries are organizational units (branches/sections) within a \nlarger Archive custodian. They do NOT exist independently - they are always\nembedded within an archive organization.\n\n**Scope**:\nArchival libraries (Archivbibliotheken) hold:\n- Reference works for archival research\n- Published guides and finding aids\n- Local history publications\n- Genealogical reference materials\n- Legal and administrative handbooks\n- Periodicals related to archive holdings\n\n**Organizational Context**:\nArchival libraries are typically:\n- Embedded within larger archive organizations (as org:OrganizationalUnit)\n- Supporting the research mission of the parent archive\n- Providing context for archival collections\n- Serving both\
\ staff and external researchers\n\n**Branch Relationship**:\n- Use `is_branch_of` to link to the parent Archive custodian\n- Use `has_type` = BranchLibraryUnit for classification\n\n**Related Types**:\n- Archive (Q166118) - Parent archive organization\n- SpecialCollection (Q4431094) - Specialized library holdings\n- OrganizationBranch - Parent class for organizational units\n\n**Dual-Class Pattern**:\nThis class represents the BRANCH type (the library unit within an archive).\nFor the collection type, see `ArchivalLibraryRecordSetType` (rico:RecordSetType).\n\n**Ontological Alignment**:\n- **W3C ORG**: org:OrganizationalUnit (branch of parent archive)\n- **Schema.org**: schema:Library (hybrid archive-library)\n- **RiC-O**: rico:CorporateBody (as agent)\n\n**Multilingual Labels**:\n- de: Archivbibliothek\n- es: biblioteca de archivo\n- fr: biblioth\xE8que li\xE9e \xE0 une institution conservant des archives\n"
slot_usage:
has_type:
# range: string # uriorcurie
required: true
examples:
- value: BranchLibraryUnit
branch_of:
required: true
description: >-
Library unit embedded within or associated with an archive organization,
providing reference materials and published works to support archival
research activities.
alt_descriptions:
nl: >-
Bibliotheekeenheid die deel uitmaakt van of geassocieerd is met een
archieforganisatie, die referentiematerialen en gepubliceerde werken
aanbiedt om archiefonderzoek te ondersteunen.
de: >-
Bibliothekseinheit, die in eine Archivorganisation eingebettet oder
mit dieser verbunden ist und Referenzmaterialien und veroffentlichte
Werke zur Unterstutzung archivarischer Forschungsaktivitaten bereitstellt.
fr: >-
Unite de bibliotheque integree ou associee a une organisation d'archives,
fournissant des documents de reference et des travaux publies pour
soutenir les activites de recherche archivistique.
es: >-
Unidad de biblioteca integrada o asociada con una organizacion de archivos,
que proporciona materiales de referencia y obras publicadas para apoyar
las actividades de investigacion archivistica.
ar: >-
وحدة مكتبة مدمجة في منظمة أرشيف أو مرتبطة بها، توفر مواد مرجعية
وأعمال منشورة لدعم أنشطة البحث الأرشيفي.
id: >-
Unit perpustakaan yang tertanam atau terkait dengan organisasi arsip,
menyediakan materi referensi dan karya terpublikasi untuk mendukung
aktivitas penelitian arsip.
zh: >-
嵌入档案组织或与其关联的图书馆单位,提供参考材料和已出版作品
以支持档案研究活动。
structured_aliases:
- literal_form: archiefbibliotheek
in_language: nl
- literal_form: Archivbibliothek
in_language: de
- literal_form: bibliotheque d'archives
in_language: fr
- literal_form: biblioteca de archivo
in_language: es
- literal_form: مكتبة الأرشيف
in_language: ar
- literal_form: perpustakaan arsip
in_language: id
- literal_form: 档案图书馆
in_language: zh
exact_mappings:
- org:OrganizationalUnit
close_mappings:
- schema:Library
- schema:ArchiveOrganization
- rico:CorporateBody
comments:
- 'BRANCH type: Archival library is a section WITHIN an archive, not standalone'
- Uses org:OrganizationalUnit pattern from W3C ORG ontology
- 'Part of dual-class pattern: branch type + rico:RecordSetType'
- Holdings are primarily published works, not archival records
- ALWAYS linked to parent Archive via is_branch_of
see_also:
- SpecialCollection
- OrganizationBranch
related_mappings:
- wd:Q25504402
broad_mappings:
- skos:Concept
slots:
- has_type
- has_score
- branch_of
- related_to
- has_label
slot_usage:
has_type:
equals_string: BranchLibraryUnit
required: true
branch_of:
range: ArchiveOrganizationType
required: true
comments:
- BRANCH type - archival library is a section WITHIN an archive, not standalone
- Uses org:OrganizationalUnit pattern from W3C ORG ontology
- Holdings are primarily published works, not archival records
- ALWAYS linked to parent Archive via branch_of
see_also:
- ArchivalLibraryRecordSetType
- OrganizationBranch
examples:
- value:
has_type: BranchLibraryUnit
has_label: "Reference Library"
branch_of: hc:NationalArchive
has_score: 1.0
description: Reference library branch within a national archive
keywords:
- archival library
- reference library
- research support
- organizational branch
- archive library
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to archival library organizational units
custodian_types: "['Archive']"

View file

@ -1,23 +1,73 @@
id: https://nde.nl/ontology/hc/class/ArchivalLibraryRecordSetType
name: ArchivalLibraryRecordSetType
title: ArchivalLibrary Record Set Type
title: Archival Library Record Set Type
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_score
- ../slots/related_to
classes:
ArchivalLibraryRecordSetType:
description: A rico:RecordSetType for classifying collections of archival library materials within heritage institutions.
description: >-
Category for grouping archival library materials including reference
works, finding aids, and published publications that support
archival research activities.
alt_descriptions:
nl: >-
Categorie voor het groeperen van archiefbibliotheekmaterialen inclusief
naslagwerken, vindtulpen en gepubliceerde publicaties die archiefonderzoek
ondersteunen.
de: >-
Kategorie zur Gruppierung von Archivbibliotheksmaterialien, einschließlich
Nachschlagewerke, Findemittel und veroffentlichte Publikationen, die
archivarische Forschungsaktivitaten unterstutzen.
fr: >-
Categorie pour regrouper les materiaux de bibliotheque d'archives,
y compris les ouvrages de reference, les instruments de recherche
et les publications qui soutiennent les activites de recherche archivistique.
es: >-
Categoria para agrupar materiales de biblioteca de archivos, incluyendo
obras de referencia, guias de busqueda y publicaciones que apoyan
las actividades de investigacion archivistica.
ar: >-
فئة لتجميع مواد مكتبة الأرشيف بما في ذلك الأعمال المرجعية وأدوات
البحث والمنشورات التي تدعم أنشطة البحث الأرشيفي.
id: >-
Kategori untuk mengelompokkan materi perpustakaan arsip termasuk karya
referensi, alat pencarian, dan publikasi yang mendukung aktivitas
penelitian arsip.
zh: >-
用于分组档案图书馆材料的类别,包括支持档案研究活动的参考著作、
检索工具和已出版出版物。
structured_aliases:
- literal_form: archiefbibliotheekbestandtype
in_language: nl
- literal_form: Archivbibliothekbestandstyp
in_language: de
- literal_form: type de collection de bibliotheque d'archives
in_language: fr
- literal_form: tipo de coleccion de biblioteca de archivo
in_language: es
- literal_form: نوع مجموعة مكتبة الأرشيف
in_language: ar
- literal_form: tipe koleksi perpustakaan arsip
in_language: id
- literal_form: 档案图书馆馆藏类型
in_language: zh
is_a: CollectionType
class_uri: rico:RecordSetType
exact_mappings:
close_mappings:
- wd:Q25504402
broad_mappings:
- rico:RecordSetType
- skos:Concept
slot_usage:
related_to:
range: WikidataAlignment
@ -27,7 +77,20 @@ classes:
slots:
- has_score
- related_to
comments:
- Part of dual-class pattern with ArchivalLibrary branch type
- Follows RiC-O RecordSetType classification principles
examples:
- value:
has_type: hc:ReferenceWorkCollection
has_score: 1.0
description: Reference works collection type
keywords:
- reference works
- finding aids
- research publications
- archival library holdings
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to archival library collection types
custodian_types: "['Archive']"

View file

@ -6,6 +6,8 @@ prefixes:
hc: https://nde.nl/ontology/hc/
rico: https://www.ica.org/standards/RiC/ontology#
schema: http://schema.org/
crm: http://www.cidoc-crm.org/cidoc-crm/
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
imports:
- linkml:types
@ -15,14 +17,60 @@ imports:
classes:
ArchivalReference:
class_uri: rico:Identifier
description: 'An archival reference code (e.g. signature, shelf mark, inventory number).
**Ontological Alignment**:
- `rico:Identifier`: An identifier assigned to an entity.
'
description: >-
Unique alphanumeric code assigned to identify and locate specific
archival materials within a repository's organizational system,
such as shelf marks, signatures, or inventory numbers.
alt_descriptions:
nl: >-
Unieke alfanumerieke code toegekend om specifieke archiefmaterialen te
identificeren en te lokaliseren binnen het organisatiesysteem van een
bewaarplaats, zoals plaatskenmerken, handtekeningen of inventarisnummers.
de: >-
Eindeutiger alphanumerischer Code, der zugewiesen wird, um spezifische
Archivmaterialien im Organisationssystem eines Depots zu identifizieren
und zu lokalisieren, wie Signatur, Standortkennzeichen oder Inventarnummern.
fr: >-
Code alphanumerique unique attribue pour identifier et localiser des
materiaux d'archives specifiques dans le systeme organisationnel d'un
depot, tel que les cotes, signatures ou numeros d'inventaire.
es: >-
Codigo alfanumerico unico asignado para identificar y ubicar materiales
de archivo especificos dentro del sistema organizativo de un repositorio,
como signaturas, marcas de estanteria o numeros de inventario.
ar: >-
رمز أبجدي رقمي فريد يُعين لتحديد مواد أرشيفية محددة وتحديد موقعها
داخل النظام التنظيمي للمستودع، مثل علامات الرف أو التوقيعات
أو أرقام الجرد.
id: >-
Kode alfanumerik unik yang ditetapkan untuk mengidentifikasi dan
menemukan materi arsip tertentu dalam sistem organisasi repositori,
seperti tanda rak, tanda tangan, atau nomor inventaris.
zh: >-
分配用于在存储库组织系统中识别和定位特定档案材料的唯一字母数字代码,
如架位标记、签名或库存编号。
structured_aliases:
- literal_form: archiefreferentie
in_language: nl
- literal_form: Archivreferenz
in_language: de
- literal_form: reference d'archives
in_language: fr
- literal_form: referencia archivistica
in_language: es
- literal_form: مرجع الأرشيف
in_language: ar
- literal_form: referensi arsip
in_language: id
- literal_form: 档案参考号
in_language: zh
exact_mappings:
- rico:Identifier
close_mappings:
- crm:E42_Identifier
- schema:identifier
broad_mappings:
- skos:Concept
slots:
- identified_by
- has_label
@ -30,7 +78,35 @@ classes:
slot_usage:
identified_by:
required: true
examples:
- value: "NL-HaNA/2.13.123/1"
- value: "KA 12345"
- value: "Collectie XYZ, nr. 42"
comments:
- Standard archival reference codes for citation and retrieval
- Examples: shelf marks, signatures, inventory numbers, call numbers
- Essential for unique identification and physical location
see_also:
- https://www.ica.org/standards/RiC/ontology
examples:
- value:
identified_by: "NL-HaNA/2.13.123/1"
has_label: "Nationaal Archief Reference"
has_description: "National Archives of the Netherlands, collection 2.13.123, item 1"
description: Dutch national archive reference code
- value:
identified_by: "MS. Bodley 764"
has_label: "Bodleian Reference"
has_description: "Bodleian Library manuscript shelf mark"
description: Bodleian Library manuscript reference
keywords:
- archival reference
- shelf mark
- signature
- inventory number
- call number
- citation code
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.5"
specificity_rationale: Specific to archival identification codes
custodian_types: "['*']"

View file

@ -5,6 +5,8 @@ prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
default_prefix: hc
imports:
- linkml:types
@ -14,14 +16,54 @@ imports:
classes:
ArchivalStatus:
class_uri: skos:Concept
description: 'The processing status of an archival record set (e.g. Unprocessed, In Arrangement, Described).
**Ontological Alignment**:
- `skos:Concept`: Concept in a status scheme.
'
description: >-
Processing status indicator for archival record sets, documenting
the degree of arrangement, description, and accessibility of
collections within a repository.
alt_descriptions:
nl: >-
Verwerkingsstatusindicator voor archiefbestanden, die de mate van
ordening, beschrijving en toegankelijkheid van collecties binnen
een bewaarplaats documenteert.
de: >-
Bearbeitungsstatusindikator fur Archivbestande, der den Grad der
Ordnung, Verzeichnung und Zugänglichkeit von Sammlungen in einem
Depot dokumentiert.
fr: >-
Indicateur d'etat de traitement pour les ensembles d'archives,
documentant le degre de classement, de description et d'accessibilite
des collections dans un depot.
es: >-
Indicador de estado de procesamiento para conjuntos de registros
archivisticos, documentando el grado de organizacion, descripcion
y accesibilidad de las colecciones en un repositorio.
ar: >-
مؤشر حالة المعالجة لمجموعات السجلات الأرشيفية، يوثق درجة الترتيب
والوصف وإمكانية الوصول إلى المجموعات داخل المستودع.
id: >-
Indikator status pemrosesan untuk kumpulan rekaman arsip, mendokumentasikan
tingkat pengaturan, deskripsi, dan aksesibilitas koleksi dalam repositori.
zh: >-
档案记录集的加工状态指标,记录存储库中藏品的整理、描述和可访问性程度。
structured_aliases:
- literal_form: archiefstatus
in_language: nl
- literal_form: Archivstatus
in_language: de
- literal_form: statut d'archives
in_language: fr
- literal_form: estado archivistico
in_language: es
- literal_form: حالة الأرشيف
in_language: ar
- literal_form: status arsip
in_language: id
- literal_form: 档案状态
in_language: zh
broad_mappings:
- skos:Concept
related_mappings:
- rico:Rule
slots:
- has_label
- has_code
@ -29,7 +71,38 @@ classes:
slot_usage:
has_code:
required: true
equals_string_in:
- "UNPROCESSED"
- "IN_ARRANGEMENT"
- "DESCRIBED"
- "AVAILABLE"
- "RESTRICTED"
- "CLOSED"
comments:
- Indicates processing stage of archival collections
- Values: Unprocessed, In Arrangement, Described, Available, Restricted, Closed
- Used for collection management and access planning
see_also:
- AccessLevel
examples:
- value:
has_code: "DESCRIBED"
has_label: "Fully Described"
has_description: "Collection has been arranged and finding aid available"
description: Fully processed and described collection
- value:
has_code: "UNPROCESSED"
has_label: "Unprocessed"
has_description: "Collection not yet arranged or described"
description: Unprocessed collection awaiting arrangement
keywords:
- archival status
- processing status
- arrangement
- description
- accessibility
- collection management
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.4"
specificity_rationale: Status classification for archival processing
custodian_types: "['*']"

View file

@ -3,44 +3,114 @@ name: ArchiveAssociation
title: Archive Association Type (Heritage Society)
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/identified_by
- ../slots/has_score
- ../slots/has_type
- ../slots/focus_on
- ../slots/has_label
classes:
ArchiveAssociation:
is_a: HeritageSocietyType
class_uri: skos:Concept
description: "Booster, history, and heritage societies that support archival institutions\nthrough advocacy, fundraising, volunteer programs, and public engagement.\n\n**Wikidata**: Q130427366\n\n**IMPORTANT: This is a HeritageSocietyType, NOT an ArchiveOrganizationType**\n\nArchive associations are HERITAGE SOCIETIES (membership organizations) that \nsupport archives, not archives themselves. The key distinction:\n- **ArchiveOrganizationType**: Actual archive institutions holding records\n- **HeritageSocietyType (this class)**: Volunteer/membership organizations supporting archives\n\n**Scope**:\nArchive associations (Archivvereine) provide:\n- Advocacy for archival institutions\n- Fundraising and donor cultivation\n- Volunteer recruitment and coordination\n- Public programming and outreach\n- Membership programs\n- Publication of newsletters and journals\n- Support for acquisitions and preservation\n\n**Organizational Role**:\nThese are typically:\n- \"Friends of the Archives\" organizations\n\
- Historical societies supporting local archives\n- Professional associations for archivists\n- Advocacy groups for archival funding\n\n**Heritage Society Focus**:\nUse `society_focus` slot to describe the archive(s) supported.\nUse `has_activity` to document advocacy and outreach activities.\n\n**Related Types**:\n- HeritageSocietyType - Parent class for heritage support organizations\n- Archive (Q166118) - The institutions they support (NOT the same thing)\n\n**Primary Type**: \nMaps to 'S' (COLLECTING_SOCIETY) in GLAMORCUBESFIXPHDNT taxonomy,\nNOT 'A' (ARCHIVE) - these are support organizations, not archives themselves.\n\n**Ontological Alignment**:\n- **SKOS**: skos:Concept with skos:broader HeritageSocietyType\n- **Schema.org**: schema:Organization, schema:NGO\n- **RiC-O**: rico:CorporateBody (as agent)\n\n**Multilingual Labels**:\n- de: Archivverein\n- fr: Association des amis des archives\n"
slot_usage:
focus_on:
required: true
identified_by:
pattern: ^Q[0-9]+$
has_type:
equals_expression: '["hc:ArchiveOrganizationType", "hc:HeritageSocietyType"]'
exact_mappings:
- skos:Concept
class_uri: hc:ArchiveAssociation
description: >-
Membership organization that supports archival institutions through
advocacy, fundraising, volunteer programs, and public engagement,
distinct from the archives themselves.
alt_descriptions:
nl: >-
Ledenorganisatie die archiefinstellingen ondersteunt door belangenbehartiging,
fondsenwerving, vrijwilligersprogramma's en publieksbetrokkenheid,
onderscheiden van de archieven zelf.
de: >-
Mitgliedsorganisation, die Archivinstitutionen durch Interessenvertretung,
Fundraising, Freiwilligenprogramme und Offentlichkeitsarbeit unterstutzt,
unterschieden von den Archiven selbst.
fr: >-
Organisation de membres qui soutient les institutions d'archives par
le plaidoyer, la collecte de fonds, les programmes de benevoles et
l'engagement public, distincte des archives elles-mêmes.
es: >-
Organizacion de miembros que apoya a las instituciones de archivos
a traves de la incidencia, recaudacion de fondos, programas de
voluntarios y participacion publica, distinta de los archivos mismos.
ar: >-
منظمة عضوية تدعم المؤسسات الأرشيفية من خلال الدعوة وجمع التبرعات
وبرامج التطوع والمشاركة العامة، ومتميزة عن الأرشيفات نفسها.
id: >-
Organisasi keanggotaan yang mendukung lembaga arsip melalui advokasi,
penggalangan dana, program sukarelawan, dan keterlibatan publik,
berbeda dari arsip itu sendiri.
zh: >-
通过倡导、筹款、志愿者计划和公众参与支持档案机构的会员组织,
与档案本身不同。
structured_aliases:
- literal_form: archiefvereniging
in_language: nl
- literal_form: Archivverein
in_language: de
- literal_form: association des amis des archives
in_language: fr
- literal_form: asociacion de archivos
in_language: es
- literal_form: جمعية الأرشيف
in_language: ar
- literal_form: asosiasi arsip
in_language: id
- literal_form: 档案协会
in_language: zh
close_mappings:
- schema:Organization
- schema:NGO
- rico:CorporateBody
comments:
- 'HERITAGE SOCIETY type: Support organization, NOT an archive itself'
- Primary type is S (COLLECTING_SOCIETY), NOT A (ARCHIVE)
- Links to HeritageSocietyType for organizational classification
- Membership-based volunteer organizations supporting archives
- No corresponding RecordSetType - these don't hold archival records
see_also:
- HeritageSocietyType
related_mappings:
- wd:Q130427366
broad_mappings:
- skos:Concept
slots:
- has_type
- has_score
- identified_by
- focus_on
- has_label
slot_usage:
focus_on:
range: ArchiveOrganizationType
required: true
identified_by:
pattern: ^Q[0-9]+$
has_type:
equals_string: "hc:HeritageSocietyType"
comments:
- HERITAGE SOCIETY type - support organization, NOT an archive itself
- Primary type is S (COLLECTING_SOCIETY), NOT A (ARCHIVE)
- Membership-based volunteer organizations supporting archives
- No corresponding RecordSetType - these don't hold archival records
see_also:
- HeritageSocietyType
- ArchiveOrganizationType
examples:
- value:
has_type: hc:HeritageSocietyType
has_label: "Friends of the National Archives"
focus_on: hc:NationalArchive
identified_by: Q130427366
description: Friends of archives organization
keywords:
- archive association
- friends of archives
- heritage society
- advocacy
- fundraising
- volunteer organization
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.5"
specificity_rationale: Specific to archive support organizations
custodian_types: "['*']"

View file

@ -1,22 +1,108 @@
id: https://nde.nl/ontology/hc/class/ArchiveBranch
name: ArchiveBranch
title: ArchiveBranch
description: A branch of an archive organization.
title: Archive Branch Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
org: http://www.w3.org/ns/org#
schema: http://schema.org/
skos: http://www.w3.org/2004/02/skos/core#
rico: https://www.ica.org/standards/RiC/ontology#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_label
- ../slots/has_description
- ../slots/branch_of
- ../slots/has_type
classes:
ArchiveBranch:
class_uri: org:OrganizationalUnit
description: Archive branch.
description: >-
Decentralized or satellite location of an archive organization,
operating as part of a larger archival institution while serving
specific geographic or functional communities.
alt_descriptions:
nl: >-
Gedecentraliseerde of satellietlocatie van een archieforganisatie,
die opereert als onderdeel van een grotere archiefinstelling en
specifieke geografische of functionele gemeenschappen bedient.
de: >-
Dezentraler oder Satellitenstandort einer Archivorganisation, der
als Teil einer größeren Archivinstitution arbeitet und spezifische
geografische oder funktionale Gemeinschaften bedient.
fr: >-
Emplacement decentra ou satellite d'une organisation d'archives,
fonctionnant comme partie d'une institution archivistique plus grande
tout en servant des communautes geographiques ou fonctionnelles specifiques.
es: >-
Ubicacion descentralizada o satelite de una organizacion de archivos,
que opera como parte de una institucion archivistica mas grande mientras
sirve a comunidades geograficas o funcionales especificas.
ar: >-
موقع لامركزي أو تابع لمنظمة أرشيف، يعمل كجزء من مؤسسة أرشيفية
أكبر بينما يخدم مجتمعات جغرافية أو وظيفية محددة.
id: >-
Lokasi terdesentralisasi atau satelit dari organisasi arsip, yang
beroperasi sebagai bagian dari institusi arsip yang lebih besar
sambil melayani komunitas geografis atau fungsional tertentu.
zh: >-
档案组织的分散或卫星位置,作为较大档案机构的一部分运营,
同时服务特定的地理或功能社区。
structured_aliases:
- literal_form: archiefvestiging
in_language: nl
- literal_form: Archivzweigstelle
in_language: de
- literal_form: succursale d'archives
in_language: fr
- literal_form: sucursal de archivo
in_language: es
- literal_form: فرع الأرشيف
in_language: ar
- literal_form: cabang arsip
in_language: id
- literal_form: 档案分馆
in_language: zh
exact_mappings:
- org:OrganizationalUnit
close_mappings:
- schema:ArchiveOrganization
- rico:CorporateBody
broad_mappings:
- skos:Concept
slots:
- has_label
- has_description
- branch_of
- has_type
slot_usage:
branch_of:
range: ArchiveOrganizationType
required: true
has_type:
equals_string: "hc:ArchiveOrganizationType"
comments:
- Represents satellite or regional branches of archive organizations
- Uses W3C ORG ontology OrganizationalUnit pattern
- Always linked to parent archive via branch_of
- May have distinct holdings or serve specific communities
see_also:
- ArchiveOrganizationType
- ArchivalLibrary
examples:
- value:
has_label: "Regional Archive Branch"
branch_of: hc:NationalArchive
has_type: hc:ArchiveOrganizationType
description: Regional branch of a national archive
keywords:
- archive branch
- satellite location
- regional archive
- organizational unit
- decentralized
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.4"
specificity_rationale: Specific to archive organizational branches
custodian_types: "['Archive']"

View file

@ -1,33 +1,97 @@
id: https://nde.nl/ontology/hc/classes/ArchiveInfo
id: https://nde.nl/ontology/hc/class/ArchiveInfo
name: ArchiveInfo
title: ArchiveInfo
title: Archive Info Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
imports:
- linkml:types
# default_range: string
- ../slots/has_name
- ../slots/identified_by
classes:
ArchiveInfo:
description: "Archive reference containing basic information about an archival\
\ institution including name, website, and ISIL identifier.\nOntology mapping\
\ rationale: - class_uri is rico:Agent because archives are agents that create,\n\
\ maintain, and provide access to records (RiC-O archival ontology)\n- close_mappings\
\ includes schema:ArchiveOrganization for Schema.org alignment - related_mappings\
\ includes prov:Agent for provenance agent role"
class_uri: rico:Agent
description: >-
Basic reference information about an archival institution including
name, website, and ISIL identifier for discovery and identification
purposes.
alt_descriptions:
nl: >-
Basisreferentie-informatie over een archiefinstelling inclusief naam,
website en ISIL-identificatie voor ontdekking en identificatie.
de: >-
Grundlegende Referenzinformationen uber eine Archivinstitution einschließlich
Name, Website und ISIL-Kennung für Entdeckung und Identifizierung.
fr: >-
Informations de reference de base sur une institution d'archives,
y compris le nom, le site web et l'identifiant ISIL pour la decouverte
et l'identification.
es: >-
Informacion de referencia basica sobre una institucion de archivos,
incluyendo nombre, sitio web e identificador ISIL para propositos
de descubrimiento e identificacion.
ar: >-
معلومات مرجعية أساسية عن مؤسسة أرشيفية بما في ذلك الاسم والموقع
الإلكتروني ومعرف ISIL لأغراض الاكتشاف والتعريف.
id: >-
Informasi referensi dasar tentang lembaga arsip termasuk nama, situs web,
dan pengenal ISIL untuk tujuan penemuan dan identifikasi.
zh: >-
关于档案机构的基本参考信息包括名称、网站和ISIL标识符用于发现和识别。
structured_aliases:
- literal_form: archiefinfo
in_language: nl
- literal_form: Archivinformation
in_language: de
- literal_form: info archives
in_language: fr
- literal_form: info de archivo
in_language: es
- literal_form: معلومات الأرشيف
in_language: ar
- literal_form: info arsip
in_language: id
- literal_form: 档案信息
in_language: zh
exact_mappings:
- rico:Agent
close_mappings:
- schema:ArchiveOrganization
related_mappings:
- prov:Agent
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
broad_mappings:
- skos:Concept
slots:
- has_name
- identified_by
comments:
- Lightweight reference class for basic archive information
- Used for discovery and identification in aggregators
- Contains minimal metadata for archive lookup
- ISIL identifier provides unique international identification
see_also:
- ArchiveOrganizationType
examples:
- value:
has_name: "Nationaal Archief"
identified_by: "NL-HaNA"
description: Dutch National Archive basic info
- value:
has_name: "Bundesarchiv"
identified_by: "DE-BA"
description: German Federal Archive basic info
keywords:
- archive info
- archive reference
- ISIL
- institution identification
- basic metadata
annotations:
specificity_score: "0.3"
specificity_rationale: Lightweight reference class for archive discovery
custodian_types: "['*']"

View file

@ -1,42 +1,119 @@
id: https://nde.nl/ontology/hc/class/ArchiveNetwork
name: ArchiveNetwork
title: Archive Network Type (France)
title: Archive Network Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
wd: http://www.wikidata.org/entity/
org: http://www.w3.org/ns/org#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_score
- ../slots/has_type
- ../slots/applicable_in
- ../slots/has_label
classes:
ArchiveNetwork:
is_a: ArchiveOrganizationType
class_uri: schema:ArchiveOrganization
description: "Consortium or network of archives cooperating for shared services,\nresource sharing, and coordinated collection development.\n\n**Wikidata**: Q96636857\n\n**Geographic Restriction**: France only\n\nThis type is ONLY valid for French archive networks. The `applicable_countries`\nslot MUST contain \"FR\". Validation rules enforce this geographic constraint.\n\nThe concept of \"Archivverbund\" (archive network) as a formal consortium \nis primarily a French organizational pattern. Use this type ONLY for \nFrench archive networks.\n\nFor other countries, use:\n- EncompassingBody for general consortium/network patterns\n- JointArchives for archives with shared holdings\n\n**Scope**:\nArchive networks (Archivverb\xFCnde) provide:\n- Shared cataloging and discovery systems\n- Coordinated collection development\n- Joint digitization projects\n- Shared preservation infrastructure\n- Professional development and training\n- Advocacy and policy coordination\n- Inter-institutional\
\ loan and access programs\n\n**Organizational Structure**:\nArchive networks typically:\n- Have formal membership agreements\n- Maintain shared technical infrastructure\n- Coordinate collection policies to avoid duplication\n- Provide unified access points for researchers\n- Share costs for expensive preservation activities\n\n**Related Types**:\n- EncompassingBody - Broader organizational umbrella concept\n- JointArchives (Q117442301) - Archives with shared holdings\n\n**Linkage to EncompassingBody**:\nArchive networks function as encompassing bodies for member archives.\nUse `encompassing_body_link` slot to connect to EncompassingBody class.\n\n**Notable Examples** (France):\n- Archives Portal Europe network (French participation)\n- Regional archival consortia in France\n\n**Ontological Alignment**:\n- **SKOS**: skos:Concept with skos:broader Q166118 (archive)\n- **Schema.org**: schema:Organization\n- **RiC-O**: rico:CorporateBody (as agent)\n- **ORG**: org:Organization (consortium)\n\
\n**Multilingual Labels**:\n- de: Archivverbund\n- fr: r\xE9seau d'archives\n- it: rete di archivi\n"
description: >-
Consortium or federation of archives cooperating for shared services,
resource discovery, coordinated collection development, and joint
preservation infrastructure.
alt_descriptions:
nl: >-
Consortium of federatie van archieven die samenwerken voor gedeelde
diensten, bronnendetectie, gecoördineerde collectieontwikkeling en
gezamenlijke bewaarinfrastructuur.
de: >-
Konsortium oder Föderation von Archiven, die für gemeinsame Dienste,
Ressourcenentdeckung, koordinierte Sammlungsentwicklung und gemeinsame
Erhaltungsinfrastruktur zusammenarbeiten.
fr: >-
Consortium ou federation d'archives cooperant pour des services partages,
la decouverte de ressources, le developpement coordonne des collections
et l'infrastructure de preservation commune.
es: >-
Consorcio o federacion de archivos que cooperan para servicios compartidos,
descubrimiento de recursos, desarrollo coordinado de colecciones e
infraestructura de preservacion conjunta.
ar: >-
اتحاد أو شبكة من الأرشيفات تتعاون من أجل الخدمات المشتركة واكتشاف
الموارد وتطوير المجموعات المنسقة والبنية التحتية للحفظ المشترك.
id: >-
Konsorsium atau federasi arsip yang bekerja sama untuk layanan bersama,
penemuan sumber daya, pengembangan koleksi terkoordinasi, dan infrastruktur
pelestarian bersama.
zh: >-
为共享服务、资源发现、协调馆藏发展和联合保存基础设施而合作的
档案联盟或联合会。
structured_aliases:
- literal_form: archiefnetwerk
in_language: nl
- literal_form: Archivverbund
in_language: de
- literal_form: reseau d'archives
in_language: fr
- literal_form: red de archivos
in_language: es
- literal_form: شبكة الأرشيف
in_language: ar
- literal_form: jaringan arsip
in_language: id
- literal_form: 档案网络
in_language: zh
exact_mappings:
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
- org:Organization
related_mappings:
- wd:Q96636857
broad_mappings:
- skos:Concept
slots:
- has_type
- has_score
- applicable_in
- has_label
slot_usage:
applicable_in:
range: Country
required: true
minimum_cardinality: 1
maximum_cardinality: 1
examples:
- value:
identified_by: FR
has_name: France
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
equals_string: "hc:ArchiveOrganizationType"
comments:
- Archive networks function as encompassing bodies for member archives
- Provides shared cataloging, digitization, and preservation services
- Geographic restriction may apply (e.g., France-specific networks)
- Notable examples: Archives Portal Europe network, regional consortia
see_also:
- EncompassingBody
- ArchiveOrganizationType
examples:
- value:
has_type: hc:ArchiveOrganizationType
has_label: "Regional Archive Network"
applicable_in:
identified_by: FR
has_score: 1.0
description: French regional archive network
keywords:
- archive network
- consortium
- federation
- shared services
- cooperative
- infrastructure
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to archive consortium/network structures
custodian_types: "['ArchiveNetwork']"

View file

@ -3,22 +3,112 @@ name: ArchiveOfInternationalOrganization
title: Archive of International Organization Type
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
- ../slots/has_score
- ../slots/has_type
- ../slots/hold_record_set
- ../slots/has_label
classes:
ArchiveOfInternationalOrganization:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
class_uri: schema:ArchiveOrganization
description: >-
Archive preserving records of inter-governmental organizations or
international umbrella organizations with global or regional scope,
documenting international cooperation, treaties, and governance.
alt_descriptions:
nl: >-
Archief dat archiefstukken bewaart van intergouvernementele organisaties
of internationale koepelorganisaties met mondiale of regionale reikwijdte,
die internationale samenwerking, verdragen en bestuur documenteert.
de: >-
Archiv, das Unterlagen zwischenstaatlicher Organisationen oder
internationaler Dachorganisationen mit globaler oder regionaler Reichweite
bewahrt und internationale Zusammenarbeit, Verträge und Governance dokumentiert.
fr: >-
Archives preservant les documents d'organisations intergouvernementales
ou d'organisations faîtieres internationales a portee mondiale ou regionale,
documentant la cooperation internationale, les traites et la gouvernance.
es: >-
Archivo que preserva los registros de organizaciones intergubernamentales
o organizaciones paraguas internacionales con alcance global o regional,
documentando la cooperacion internacional, los tratados y la gobernanza.
ar: >-
أرشيف يحفظ سجلات المنظمات الحكومية الدولية أو المنظمات الدولية
الشاملة ذات النطاق العالمي أو الإقليمي، ويوثق التعاون الدولي
والمعاهدات والحوكمة.
id: >-
Arsip yang melestarikan catatan organisasi antarpemerintah atau organisasi
payung internasional dengan cakupan global atau regional, mendokumentasikan
kerjasama internasional, perjanjian, dan tata kelola.
zh: >-
保存具有全球或区域范围的国际政府间组织或国际伞型组织记录的档案,
记录国际合作、条约和治理。
structured_aliases:
- literal_form: archief van internationale organisatie
in_language: nl
- literal_form: Archiv einer internationalen Organisation
in_language: de
- literal_form: archives d'une organisation internationale
in_language: fr
- literal_form: archivo de organizacion internacional
in_language: es
- literal_form: أرشيف منظمة دولية
in_language: ar
- literal_form: arsip organisasi internasional
in_language: id
- literal_form: 国际组织档案馆
in_language: zh
exact_mappings:
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
related_mappings:
- wd:Q27031014
broad_mappings:
- skos:Concept
slots:
- hold_record_set
description: "Archive of an inter-governmental organization or international umbrella \norganization, preserving records of global significance.\n\n**Wikidata**: Q27031014\n\n**Scope**:\nInternational organization archives preserve:\n- Treaty documents and international agreements\n- Conference proceedings and resolutions\n- Correspondence between member states\n- Administrative records of international bodies\n- Reports and publications\n- Photographs and audiovisual documentation\n\n**Organizational Context**:\nThese archives are typically:\n- Part of UN system organizations (UNESCO, WHO, ILO, etc.)\n- European Union institutions (EU Commission, Parliament, etc.)\n- International NGO umbrella organizations\n- Regional intergovernmental bodies (AU, ASEAN, OAS, etc.)\n- International professional associations\n\n**Notable Examples**:\n- United Nations Archives and Records Management\n- UNESCO Archives\n- European Union Historical Archives (Florence)\n- League of Nations Archives (Geneva)\n\
- NATO Archives\n\n**Related Types**:\n- GovernmentArchive (Q119712417) - National government archives\n- PublicArchive (Q27031009) - Public sector archives\n\n**Dual-Class Pattern**:\nThis class represents the CUSTODIAN type (the archive organization).\nFor the collection type, see `InternationalOrganizationRecordSetType` (rico:RecordSetType).\n\n**Ontological Alignment**:\n- **SKOS**: skos:Concept with skos:broader Q166118 (archive)\n- **Schema.org**: schema:ArchiveOrganization\n- **RiC-O**: rico:CorporateBody (as agent)\n- **CPOV**: Aligns with EU Core Public Organisation Vocabulary\n\n**Multilingual Labels**:\n- de: Archiv einer internationalen Organisation\n- fr: archives d'une organisation internationale\n"
slot_usage: {}
- has_scope
- has_score
- has_type
- has_label
slot_usage:
has_type:
equals_string: "hc:ArchiveOrganizationType"
comments:
- Preserves records of UN organizations, EU institutions, NATO, etc.
- Documents treaties, international agreements, conference proceedings
- Part of dual-class pattern with ArchiveOfInternationalOrganizationRecordSetType
- Examples: UN Archives, UNESCO Archives, EU Historical Archives
see_also:
- ArchiveOfInternationalOrganizationRecordSetType
- GovernmentArchive
examples:
- value:
has_type: hc:ArchiveOrganizationType
has_label: "UNESCO Archives"
hold_record_set:
- hc:InternationalOrgFonds
- hc:TreatyCollection
has_scope: global
description: UNESCO archives with international organization records
keywords:
- international organization archive
- UN archives
- EU archives
- treaty documents
- intergovernmental records
- global governance
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to international organization archives
custodian_types: "['ArchiveOfInternationalOrganization']"

View file

@ -1,8 +1,13 @@
id: https://nde.nl/ontology/hc/class/ArchiveOfInternationalOrganizationRecordSetType
name: ArchiveOfInternationalOrganizationRecordSetType
title: ArchiveOfInternationalOrganization Record Set Type
title: Archive of International Organization Record Set Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -10,21 +15,88 @@ imports:
- ../slots/has_type
classes:
ArchiveOfInternationalOrganizationRecordSetType:
description: 'A rico:RecordSetType for classifying collections held by ArchiveOfInternationalOrganization custodians.
'
description: >-
Category for grouping documentary materials accumulated by international
organization archives, including treaty documents, conference proceedings,
administrative records, and institutional publications.
alt_descriptions:
nl: >-
Categorie voor het groeperen van documentair materiaal verzameld door
archieven van internationale organisaties, inclusief verdragsdocumenten,
conferentieverslagen, administratieve archieven en institutionele publicaties.
de: >-
Kategorie zur Gruppierung von Dokumentenmaterial, das von Archiven
internationaler Organisationen gesammelt wurde, einschließlich Vertragsdokumente,
Konferenzprotokolle, Verwaltungsunterlagen und institutionelle Publikationen.
fr: >-
Categorie pour regrouper les documents accumules par les archives
d'organisations internationales, y compris les documents de traites,
les comptes rendus de conferences, les documents administratifs et
les publications institutionnelles.
es: >-
Categoria para agrupar materiales documentales acumulados por archivos
de organizaciones internacionales, incluyendo documentos de tratados,
actas de conferencias, registros administrativos y publicaciones institucionales.
ar: >-
فئة لتجميع المواد الوثائقية التي جمعتها أرشيفات المنظمات الدولية،
بما في ذلك وثائق المعاهدات ومحاضر المؤتمرات والسجلات الإدارية
والمنشورات المؤسسية.
id: >-
Kategori untuk mengelompokkan materi dokumenter yang dikumpulkan oleh
arsip organisasi internasional, termasuk dokumen perjanjian, notulensi
konferensi, catatan administratif, dan publikasi institusional.
zh: >-
用于分组国际组织档案馆积累的文献材料的类别,包括条约文件、会议记录、
行政记录和机构出版物。
structured_aliases:
- literal_form: archiefbestandtype internationale organisatie
in_language: nl
- literal_form: Archivbestandstyp internationaler Organisation
in_language: de
- literal_form: type de fonds d'archives d'organisation internationale
in_language: fr
- literal_form: tipo de fondo de archivo de organizacion internacional
in_language: es
- literal_form: نوع مجموعة أرشيف المنظمة الدولية
in_language: ar
- literal_form: tipe koleksi arsip organisasi internasional
in_language: id
- literal_form: 国际组织档案集类型
in_language: zh
is_a: CollectionType
class_uri: rico:RecordSetType
close_mappings:
- wd:Q27031014
broad_mappings:
- rico:RecordSetType
- skos:Concept
slots:
- has_type
- has_score
- has_scope
slot_usage:
has_type:
equals_string: "hc:ArchiveOrganizationType"
see_also:
- ArchiveOfInternationalOrganization
- rico:RecordSetType
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
comments:
- Part of dual-class pattern with ArchiveOfInternationalOrganization custodian type
- Follows RiC-O RecordSetType classification principles
- Subclasses include InternationalOrgFonds, TreatyCollection, ConferenceRecordSeries
examples:
- value:
has_type: hc:InternationalOrgFonds
has_score: 1.0
has_scope: global
description: International organization fonds record set type
keywords:
- international organization records
- treaty documents
- conference proceedings
- institutional archives
- global governance records
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.5"
specificity_rationale: Specific to international organization archive collections
custodian_types: "['ArchiveOfInternationalOrganization']"

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/ArchiveOfInternationalOrganizationRecordSetTypes
name: ArchiveOfInternationalOrganizationRecordSetTypes
title: ArchiveOfInternationalOrganization Record Set Type Subclasses
title: Archive of International Organization Record Set Type Subclasses
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -21,15 +21,50 @@ classes:
InternationalOrgFonds:
is_a: ArchiveOfInternationalOrganizationRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for International organization records.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: >-
Fonds of records created or accumulated by an international organization
in the course of its official functions and activities.
alt_descriptions:
nl: >-
Fonds van archiefstukken gemaakt of verzameld door een internationale
organisatie in de loop van zijn officiële functies en activiteiten.
de: >-
Bestand von Unterlagen, die von einer internationalen Organisation im
Rahmen ihrer offiziellen Funktionen und Aktivitaten erstellt oder angesammelt wurden.
fr: >-
Fonds de documents crees ou accumules par une organisation internationale
dans le cadre de ses fonctions et activites officielles.
es: >-
Fondo de registros creados o acumulados por una organizacion internacional
en el curso de sus funciones y actividades oficiales.
ar: >-
أرشيف سجلات أنشأتها أو جمعتها منظمة دولية في سياق وظائفها
وأنشطتها الرسمية.
id: >-
Fonds catatan yang dibuat atau dikumpulkan oleh organisasi internasional
dalam menjalankan fungsi dan aktivitas resminya.
zh: >-
国际组织在其官方职能和活动过程中创建或积累的记录档案。
structured_aliases:
- literal_form: fonds internationale organisatie
in_language: nl
- literal_form: Fonds internationaler Organisation
in_language: de
- literal_form: fonds d'organisation internationale
in_language: fr
- literal_form: fondo de organizacion internacional
in_language: es
- literal_form: أرشيف المنظمة الدولية
in_language: ar
- literal_form: fonds organisasi internasional
in_language: id
- literal_form: 国际组织档案
in_language: zh
broad_mappings:
- rico:RecordSetType
- skos:Concept
related_mappings:
- rico-rst:Fonds
close_mappings:
- skos:Concept
see_also:
- ArchiveOfInternationalOrganizationRecordSetType
- rico:RecordSetType
@ -37,34 +72,78 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: InternationalOrgFonds
has_custodian:
equals_string: ArchiveOfInternationalOrganization
record_holder_note:
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
custodians. Inverse of rico:isOrWasHolderOf.
comments:
- Follows RiC-O fonds organizational principle
- Typically held by ArchiveOfInternationalOrganization custodians
examples:
- value:
has_type: InternationalOrgFonds
has_score: 1.0
description: International organization fonds
keywords:
- international organization fonds
- institutional records
- official documents
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.5"
specificity_rationale: Specific to international organization fonds
custodian_types: "['ArchiveOfInternationalOrganization']"
TreatyCollection:
is_a: ArchiveOfInternationalOrganizationRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for International agreements.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
description: >-
Collection of international agreements, treaties, conventions, and
diplomatic documents governing relations between states and organizations.
alt_descriptions:
nl: >-
Collectie van internationale overeenkomsten, verdragen, conventies en
diplomatieke documenten die de betrekkingen tussen staten en
organisaties regelen.
de: >-
Sammlung von internationalen Vereinbarungen, Vertragen, Konventionen und
diplomatischen Dokumenten, die die Beziehungen zwischen Staaten und
Organisationen regeln.
fr: >-
Collection d'accords internationaux, traites, conventions et documents
diplomatiques regissant les relations entre Etats et organisations.
es: >-
Coleccion de acuerdos internacionales, tratados, convenciones y
documentos diplomaticos que rigen las relaciones entre estados
y organizaciones.
ar: >-
مجموعة من الاتفاقيات الدولية والمعاهدات والاتفاقيات والوثائق
الدبلوماسية التي تحكم العلاقات بين الدول والمنظمات.
id: >-
Koleksi perjanjian internasional, traktat, konvensi, dan dokumen
diplomatik yang mengatur hubungan antara negara dan organisasi.
zh: >-
管理国家与组织之间关系的国际协议、条约、公约和外交文件集合。
structured_aliases:
- literal_form: verdragscollectie
in_language: nl
- literal_form: Vertragssammlung
in_language: de
- literal_form: collection de traites
in_language: fr
- literal_form: coleccion de tratados
in_language: es
- literal_form: مجموعة المعاهدات
in_language: ar
- literal_form: koleksi traktat
in_language: id
- literal_form: 条约集
in_language: zh
broad_mappings:
- rico:RecordSetType
- skos:Concept
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
see_also:
- ArchiveOfInternationalOrganizationRecordSetType
- rico:RecordSetType
@ -72,30 +151,76 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: TreatyCollection
has_custodian:
equals_string: ArchiveOfInternationalOrganization
record_holder_note:
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
custodians. Inverse of rico:isOrWasHolderOf.
comments:
- Follows RiC-O collection organizational principle
- Documents international agreements and diplomatic relations
examples:
- value:
has_type: TreatyCollection
has_score: 1.0
description: Treaty and agreement collection
keywords:
- treaty collection
- international agreements
- diplomatic documents
- conventions
annotations:
specificity_score: "0.5"
specificity_rationale: Specific to treaty and agreement collections
custodian_types: "['ArchiveOfInternationalOrganization']"
ConferenceRecordSeries:
is_a: ArchiveOfInternationalOrganizationRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Conference proceedings.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the series \norganizational\
\ principle as defined by rico-rst:Series.\n"
description: >-
Series of records documenting conferences, meetings, assemblies, and
other deliberative gatherings of international organizations.
alt_descriptions:
nl: >-
Reeks archiefstukken die conferenties, vergaderingen, assemblees en
andere beraadslagende bijeenkomsten van internationale organisaties documenteren.
de: >-
Reihe von Unterlagen, die Konferenzen, Sitzungen, Versammlungen und
andere beratende Zusammenkunfte internationaler Organisationen dokumentieren.
fr: >-
Serie de documents documentant les conferences, reunions, assemblages
et autres reunions deliberatives des organisations internationales.
es: >-
Serie de registros que documentan conferencias, reuniones, asambleas
y otras reuniones deliberativas de organizaciones internacionales.
ar: >-
سلسلة من السجلات التي توثق المؤتمرات والاجتماعات والجمعيات وغيرها
من الاجتماعات التداولية للمنظمات الدولية.
id: >-
Seri catatan yang mendokumentasikan konferensi, pertemuan, sidang,
dan pertemuan deliberatif lainnya dari organisasi internasional.
zh: >-
记录国际组织会议、集会、大会和其他审议性聚会的记录系列。
structured_aliases:
- literal_form: conferentiereeks
in_language: nl
- literal_form: Konferenzreihe
in_language: de
- literal_form: serie de conferences
in_language: fr
- literal_form: serie de conferencias
in_language: es
- literal_form: سلسلة المؤتمرات
in_language: ar
- literal_form: seri konferensi
in_language: id
- literal_form: 会议记录系列
in_language: zh
broad_mappings:
- rico:RecordSetType
- skos:Concept
related_mappings:
- rico-rst:Series
close_mappings:
- skos:Concept
see_also:
- ArchiveOfInternationalOrganizationRecordSetType
- rico:RecordSetType
@ -103,15 +228,26 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: ConferenceRecordSeries
has_custodian:
equals_string: ArchiveOfInternationalOrganization
record_holder_note:
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
custodians. Inverse of rico:isOrWasHolderOf.
comments:
- Follows RiC-O series organizational principle
- Documents conference proceedings and resolutions
examples:
- value:
has_type: ConferenceRecordSeries
has_score: 1.0
description: Conference proceedings record series
keywords:
- conference records
- meeting proceedings
- assembly records
- resolutions
annotations:
specificity_score: "0.5"
specificity_rationale: Specific to conference record series
custodian_types: "['ArchiveOfInternationalOrganization']"

View file

@ -11,7 +11,7 @@ prefixes:
crm: http://www.cidoc-crm.org/cidoc-crm/
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- ../classes/AgentType
@ -28,56 +28,63 @@ imports:
classes:
ArchiveOrganizationType:
is_a: CustodianType
class_uri: skos:Concept
annotations:
skos:prefLabel: Archive Organization
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
class_uri: schema:ArchiveOrganization
description: >-
Specialized custodian type for archive organizations - institutions
that preserve and provide access to historical documents, records,
and other archival materials.
alt_descriptions:
nl: >-
Gespecialiseerd bewaarderstype voor archieforganisaties - instellingen
die historische documenten, archiefstukken en andere archiefmaterialen
bewaren en toegankelijk maken.
de: >-
Spezialisierte Verwahrerart fur Archivorganisationen - Institutionen,
die historische Dokumente, Unterlagen und andere Archivmaterialien
bewahren und zugänglich machen.
fr: >-
Type de depositeur specialise pour les organisations d'archives -
institutions qui preservent et donnent acces aux documents historiques,
aux archives et autres materiaux d'archives.
es: >-
Tipo especializado de depositario para organizaciones de archivos -
instituciones que preservan y proporcionan acceso a documentos
historicos, registros y otros materiales archivisticos.
ar: >-
نوع حارس متخصص لمنظمات الأرشيف - مؤسسات تحافظ على الوثائق التاريخية
والسجلات والمواد الأرشيفية الأخرى وتوفر الوصول إليها.
id: >-
Tipe penjaga khusus untuk organisasi arsip - lembaga yang melestarikan
dan menyediakan akses ke dokumen historis, catatan, dan materi arsip lainnya.
zh: >-
档案组织的专门保管者类型 - 保存和提供历史文件、记录和其他档案材料
访问的机构。
structured_aliases:
- literal_form: archief
predicate: EXACT_SYNONYM
- literal_form: archieforganisatietype
in_language: nl
- literal_form: archieven
predicate: EXACT_SYNONYM
in_language: nl
- literal_form: archive
predicate: EXACT_SYNONYM
in_language: en
- literal_form: archives
predicate: EXACT_SYNONYM
in_language: en
- literal_form: archiv
predicate: EXACT_SYNONYM
- literal_form: Archivorganisationstyp
in_language: de
- literal_form: archive
predicate: EXACT_SYNONYM
in_language: de
- literal_form: archivo
predicate: EXACT_SYNONYM
in_language: es
- literal_form: archivos
predicate: EXACT_SYNONYM
in_language: es
- literal_form: archivio
predicate: EXACT_SYNONYM
in_language: it
- literal_form: archivi
predicate: EXACT_SYNONYM
in_language: it
- literal_form: arquivos
predicate: EXACT_SYNONYM
in_language: pt
- literal_form: arquivo
predicate: EXACT_SYNONYM
in_language: pt
- literal_form: archives
predicate: EXACT_SYNONYM
- literal_form: type d'organisation d'archives
in_language: fr
description: 'Specialized custodian type for archive organizations - institutions that preserve and provide access to historical documents, records, and other archival materials.
**Wikidata Base Concept**: Q166118 (archive)'
- literal_form: tipo de organizacion de archivos
in_language: es
- literal_form: نوع منظمة الأرشيف
in_language: ar
- literal_form: tipe organisasi arsip
in_language: id
- literal_form: 档案组织类型
in_language: zh
exact_mappings:
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
related_mappings:
- rico:RecordResource
- rico:RecordSet
- wd:Q166118
broad_mappings:
- skos:Concept
- crm:E55_Type
slots:
- has_policy
- has_scope
@ -85,73 +92,45 @@ classes:
- has_type
- has_schema
- has_standard
- has_type
- has_score
- identified_by
- has_hypernym
slot_usage:
identified_by:
pattern: ^Q[0-9]+$
required: true
has_policy:
# range: string
has_scope:
# range: string
has_hypernym:
range: ArchiveOrganizationType
required: false
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
exact_mappings:
- skos:Concept
- schema:ArchiveOrganization
close_mappings:
- crm:E55_Type
- rico:CorporateBody
related_mappings:
- rico:RecordResource
- rico:RecordSet
equals_string: "hc:ArchiveOrganizationType"
comments:
- ArchiveOrganizationType implements SKOS-based classification for archive organizations
- Integrates with RiC-O (Records in Contexts Ontology) for archival description
- Supports 144+ Wikidata archive subtypes with multilingual labels
- Geographic restrictions apply to some types (e.g., Czechia-specific archive types)
- Access policies range from open (light archives) to restricted (dark archives)
- Base classification for archive organization types
- Implements SKOS-based classification with 144+ Wikidata subtypes
- Integrates with RiC-O (Records in Contexts Ontology)
- Supports geographic restrictions and access policy variations
see_also:
- AcademicArchive
- GovernmentArchive
- ArchitecturalArchive
examples:
- value:
identified_by: https://nde.nl/ontology/hc/type/archive/Q1188452
has_type_code: ARCHIVE
has_label:
- National Archive@en
- nationaal archief@nl
- Nationalarchiv@de
has_description: central archive of a country that preserves national government records
custodian_type_broader: https://nde.nl/ontology/hc/type/archive/Q166118
archive_scope: national
has_type:
- government records
- legal documents
- state correspondence
has_standard:
- OAIS
- PREMIS
- EAD3
has_schema:
- has_label: EAD3
access_policy: mixed
identified_by: Q1188452
has_type: hc:ArchiveOrganizationType
has_scope: national
description: National archive organization type
- value:
identified_by: https://nde.nl/ontology/hc/type/archive/Q10605195
has_type_code: ARCHIVE
has_label:
- Business Archive@en
- bedrijfsarchief@nl
has_description: organizational entity that keeps or archives fonds of a company
custodian_type_broader: https://nde.nl/ontology/hc/type/archive/Q166118
archive_scope: corporate
has_type:
- corporate records
- financial documents
- business correspondence
has_standard:
- ISO 15489
- MoReq
access_policy: restricted
identified_by: Q10605195
has_type: hc:ArchiveOrganizationType
has_scope: corporate
description: Business archive organization type
keywords:
- archive organization
- archival institution
- records repository
- custodian type
- SKOS classification
annotations:
specificity_score: "0.4"
specificity_rationale: Base type classification for archive organizations
custodian_types: "['Archive']"

View file

@ -1,22 +1,118 @@
id: https://nde.nl/ontology/hc/class/ArchiveScope
name: ArchiveScope
title: ArchiveScope
description: The scope of an archive organization (e.g. National, Regional).
title: Archive Scope Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_label
- ../slots/has_description
- ../slots/has_code
classes:
ArchiveScope:
class_uri: skos:Concept
description: Archive scope.
description: >-
Geographic or functional scope of an archive organization's collecting
and custodial activities, such as national, regional, local, or
subject-specific focus.
alt_descriptions:
nl: >-
Geografisch of functioneel bereik van de verzamel- en bewaaractiviteiten
van een archieforganisatie, zoals nationaal, regionaal, lokaal of
onderwerpsspecifiek.
de: >-
Geografischer oder funktioneller Umfang der Sammel- und Verwahrungsaktivitaten
einer Archivorganisation, wie national, regional, lokal oder themenspezifisch.
fr: >-
Portee geographique ou fonctionnelle des activites de collecte et de
garde d'une organisation d'archives, comme nationale, regionale, locale
ou specifique a un sujet.
es: >-
Alcance geografico o funcional de las actividades de coleccion y custodia
de una organizacion de archivos, como nacional, regional, local o
enfocado en un tema especifico.
ar: >-
النطاق الجغرافي أو الوظيفي لأنشطة جمع وحفظ منظمة الأرشيف، مثل
الوطني أو الإقليمي أو المحلي أو التركيز على موضوع محدد.
id: >-
Cakupan geografis atau fungsional dari aktivitas pengumpulan dan
pengawasan organisasi arsip, seperti nasional, regional, lokal,
atau fokus spesifik subjek.
zh: >-
档案组织收集和保管活动的地理或职能范围,如国家、区域、地方
或特定主题重点。
structured_aliases:
- literal_form: archiefbereik
in_language: nl
- literal_form: Archivumfang
in_language: de
- literal_form: portee d'archives
in_language: fr
- literal_form: alcance de archivo
in_language: es
- literal_form: نطاق الأرشيف
in_language: ar
- literal_form: cakupan arsip
in_language: id
- literal_form: 档案范围
in_language: zh
broad_mappings:
- skos:Concept
related_mappings:
- rico:Scope
slots:
- has_label
- has_description
- has_code
slot_usage:
has_label:
required: true
equals_string_in:
- "National"
- "Regional"
- "Local"
- "Municipal"
- "Corporate"
- "Institutional"
- "Subject-Specific"
has_code:
required: true
comments:
- Classification for archive collecting scope
- Values: National, Regional, Local, Municipal, Corporate, Institutional, Subject-Specific
- Used for collection development policy documentation
see_also:
- ArchiveOrganizationType
examples:
- value:
has_code: "NATIONAL"
has_label: "National"
has_description: "Archive with nation-wide collecting scope"
description: National scope archive
- value:
has_code: "REGIONAL"
has_label: "Regional"
has_description: "Archive serving a specific geographic region"
description: Regional scope archive
- value:
has_code: "CORPORATE"
has_label: "Corporate"
has_description: "Archive preserving records of a single business entity"
description: Corporate scope archive
keywords:
- archive scope
- collecting scope
- geographic scope
- national
- regional
- local
- corporate
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.4"
specificity_rationale: Classification for archive collecting scope
custodian_types: "['*']"

View file

@ -1,8 +1,14 @@
id: https://nde.nl/ontology/hc/class/ArchivesForBuildingRecords
name: ArchivesForBuildingRecords
title: Archives for Building Records Type
title: Archives for Building Records
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -12,41 +18,80 @@ imports:
classes:
ArchivesForBuildingRecords:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
class_uri: hc:ArchivesForBuildingRecords
description: >-
Public archive specializing in building permits, construction documents,
and architectural records serving municipal planning and property research.
alt_descriptions:
nl: >-
Openbaar archief gespecialiseerd in bouwvergunningen, bouwdocumenten en
architectuurarchieven ter ondersteuning van gemeentelijke planning en
eigendomsonderzoek.
de: >-
Oeffentliches Archiv, spezialisiert auf Baugenehmigungen, Baudokumente
und Architekturunterlagen fuer kommunale Planung und Grundstuecksforschung.
fr: >-
Archives publiques specialisees dans les permis de construire, documents
de construction et archives architecturales au service de la planification
municipale et de la recherche fonciere.
es: >-
Archivo publico especializado en permisos de construccion, documentos de
construccion y registros arquitectonicos para la planificacion municipal
y la investigacion de propiedades.
ar: >-
أرشيف عام متخصص في تصاريح البناء ومستندات البناء والسجلات المعمارية
لخدمة التخطيط البلدي والبحث العقاري.
id: >-
Arsip publik yang berspesialisasi dalam izin bangunan, dokumen konstruksi,
dan arsip arsitektur untuk perencanaan kota dan penelitian properti.
zh: >-
专门处理建筑许可证、施工文件和建筑档案的公共档案机构,服务于市政规划和
房产研究。
exact_mappings:
- wd:Q136027937
broad_mappings:
- skos:Concept
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
structured_aliases:
- literal_form: bouwdossiersarchief
in_language: nl
- literal_form: Bauaktenarchiv
in_language: de
- literal_form: archives de dossiers de construction
in_language: fr
- literal_form: archivo de expedientes de obra
in_language: es
- literal_form: أرشيف سجلات البناء
in_language: ar
- literal_form: arsip dokumen bangunan
in_language: id
- literal_form: 建筑档案
in_language: zh
examples:
- value:
has_type: ArchiveOrganizationType
hold_record_set:
- BuildingPermitSeries
description: Municipal building records archive
keywords:
- building permits
- construction documents
- architectural records
- municipal archives
- property research
slots:
- hold_record_set
description: 'Public archives specializing in building records, construction documents,
and architectural permits.
**Wikidata**: Q136027937
**Scope**:
Building records archives (Bauaktenarchive) preserve:
- Building permits and applications
- Construction drawings and blueprints
- Inspection reports and certificates
- Zoning and planning documents
- Structural engineering reports
- Historical building surveys
- Demolition records
**Administrative Context**:
These archives typically:
- Are part of municipal or regional government
- Serve building departments and planning offices
- Support property research and due diligence
- Document urban development history
- Provide evidence for heritage designation
**Related Types**:
- ArchitecturalArchive (Q121409581) - Broader architectural documentation
- MunicipalArchive (Q604177) - Local government archives
- LocalGovernmentArchive (Q118281267) - Local administrative records
**User Groups**:
- Property owners and developers
- Architects and engineers
- Historic preservation officers
- Urban planners and researchers
- Insurance companies
'
slot_usage: {}
- hold_record_set
comments:
- Typically part of municipal or regional government
- Serves building departments and planning offices
- Supports property research and due diligence
- Documents urban development history
see_also:
- ArchitecturalArchive
- MunicipalArchive
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.4"
specificity_rationale: Specific archive type for building/construction records
custodian_types: "['ArchivesForBuildingRecords']"

View file

@ -1,17 +1,12 @@
id: https://nde.nl/ontology/hc/class/ArchivesForBuildingRecordsRecordSetType
name: ArchivesForBuildingRecordsRecordSetType
title: ArchivesForBuildingRecords Record Set Type
title: Archives for Building Records Record Set Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -19,22 +14,78 @@ imports:
- ../slots/has_type
classes:
ArchivesForBuildingRecordsRecordSetType:
description: 'A rico:RecordSetType for classifying collections held by ArchivesForBuildingRecords custodians.
'
class_uri: hc:ArchivesForBuildingRecordsRecordSetType
description: >-
Classification category for record sets containing building permits,
construction documentation, and architectural records within building
records archives.
alt_descriptions:
nl: >-
Classificatiecategorie voor recordsets met bouwvergunningen,
bouwdocumentatie en architectuurarchieven binnen bouwdossiersarchieven.
de: >-
Klassifizierungskategorie fuer Datensatzgruppen mit Baugenehmigungen,
Baudokumentation und Architekturunterlagen in Bauaktenarchiven.
fr: >-
Categorie de classification pour les ensembles d'enregistrements contenant
des permis de construire, de la documentation de construction et des
archives architecturales dans les archives de dossiers de construction.
es: >-
Categoria de clasificacion para conjuntos de registros que contienen
permisos de construccion, documentacion de construccion y registros
arquitectonicos en archivos de expedientes de obra.
ar: >-
فئة تصنيف لمجموعات السجلات التي تحتوي على تصاريح البناء ووثائق البناء
والسجلات المعمارية في أرشيفات سجلات البناء.
id: >-
Kategori klasifikasi untuk kumpulan rekaman yang berisi izin bangunan,
dokumentasi konstruksi, dan arsip arsitektur dalam arsip dokumen bangunan.
zh: >-
建筑档案中包含建筑许可证、施工文件和建筑记录的记录集分类类别。
is_a: CollectionType
class_uri: rico:RecordSetType
broad_mappings:
- rico:RecordSetType
- skos:Concept
structured_aliases:
- literal_form: bouwdossiers-recordsettype
in_language: nl
- literal_form: Bauakten-Bestandsart
in_language: de
- literal_form: type de fonds de dossiers de construction
in_language: fr
- literal_form: tipo de fondo de expedientes de obra
in_language: es
- literal_form: نوع مجموعة سجلات البناء
in_language: ar
- literal_form: tipe kumpulan rekaman dokumen bangunan
in_language: id
- literal_form: 建筑记录集类型
in_language: zh
examples:
- value:
has_type: ArchiveOrganizationType
has_score: 1.0
description: Building permit collection type
keywords:
- building permit
- construction records
- record set type
- classification
slots:
- has_type
- has_score
- has_scope
see_also:
- ArchivesForBuildingRecords
- rico:RecordSetType
- has_type
- has_score
- has_scope
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
any_of:
- equals_string: "hc:ArchiveOrganizationType"
comments:
- Abstract classification for building records collections
- See ArchivesForBuildingRecordsRecordSetTypes.yaml for concrete subclasses
see_also:
- ArchivesForBuildingRecords
- rico:RecordSetType
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.35"
specificity_rationale: Specific record set type for building/construction records
custodian_types: "['ArchivesForBuildingRecords']"

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/ArchivesForBuildingRecordsRecordSetTypes
name: ArchivesForBuildingRecordsRecordSetTypes
title: ArchivesForBuildingRecords Record Set Type Subclasses
title: Archives for Building Records Record Set Types
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -20,67 +20,145 @@ imports:
classes:
BuildingPermitSeries:
is_a: ArchivesForBuildingRecordsRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Building permit records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the series \norganizational\
\ principle as defined by rico-rst:Series.\n"
class_uri: hc:BuildingPermitSeries
description: >-
Series of building permit applications, approvals, and related
administrative records documenting construction authorization.
alt_descriptions:
nl: >-
Reeks bouwaanvraagformulieren, goedkeuringen en gerelateerde administratieve
records die bouwtoestemming documenteren.
de: >-
Serie von Baugenehmigungsantraegen, Genehmigungen und verwandten
Verwaltungsunterlagen, die die Bauautorisierung dokumentieren.
fr: >-
Serie de demandes de permis de construire, d'approbations et de documents
administratifs connexes documentant l'autorisation de construction.
es: >-
Serie de solicitudes de permisos de construccion, aprobaciones y registros
administrativos relacionados que documentan la autorizacion de construccion.
ar: >-
سلسلة من طلبات تصاريح البناء والموافقات والسجلات الإدارية ذات الصلة
التي توثق ترخيص البناء.
id: >-
Seri aplikasi izin bangunan, persetujuan, dan catatan administratif terkait
yang mendokumentasikan otorisasi konstruksi.
zh: >-
建筑许可证申请、批准及相关行政记录系列,记录施工授权。
broad_mappings:
- rico:RecordSetType
- rico:RecordSetType
related_mappings:
- rico-rst:Series
close_mappings:
- skos:Concept
see_also:
- ArchivesForBuildingRecordsRecordSetType
- rico:RecordSetType
- rico-rst:Series
structured_aliases:
- literal_form: bouwvergunningenserie
in_language: nl
- literal_form: Baugenehmigungsserie
in_language: de
- literal_form: serie de permis de construire
in_language: fr
- literal_form: serie de permisos de construccion
in_language: es
- literal_form: سلسلة تصاريح البناء
in_language: ar
- literal_form: seri izin bangunan
in_language: id
- literal_form: 建筑许可证系列
in_language: zh
keywords:
- building permit
- construction authorization
- series
slots:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_type
- has_score
- has_custodian
- record_holder_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: BuildingPermitSeries
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "BuildingPermitSeries"
has_custodian:
equals_string: ArchivesForBuildingRecords
equals_string: "ArchivesForBuildingRecords"
record_holder_note:
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords
custodians. Inverse of rico:isOrWasHolderOf.
equals_string: "This RecordSetType is typically held by ArchivesForBuildingRecords custodians"
comments:
- Follows rico-rst:Series organizational principle
- Primary series type for building permit documentation
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.45"
specificity_rationale: Specific series type for building permits
custodian_types: "['ArchivesForBuildingRecords']"
ConstructionDocumentCollection:
is_a: ArchivesForBuildingRecordsRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Construction documentation.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
class_uri: hc:ConstructionDocumentCollection
description: >-
Collection of construction drawings, blueprints, inspection reports,
and technical documentation for building projects.
alt_descriptions:
nl: >-
Collectie van bouwtekeningen, blauwdrukken, inspectierapporten en
technische documentatie voor bouwprojecten.
de: >-
Sammlung von Bauzeichnungen, Blaupausen, Inspektionsberichten und
technischer Dokumentation fuer Bauprojekte.
fr: >-
Collection de dessins de construction, de plans, de rapports d'inspection
et de documentation technique pour les projets de construction.
es: >-
Coleccion de planos de construccion, planos, informes de inspeccion y
documentacion tecnica para proyectos de construccion.
ar: >-
مجموعة من رسومات البناء والمخططات وتقارير التفتيش والوثائق الفنية
لمشاريع البناء.
id: >-
Koleksi gambar konstruksi, cetak biru, laporan inspeksi, dan dokumentasi
teknis untuk proyek bangunan.
zh: >-
建筑图纸、蓝图、检查报告和建筑项目技术文件的收藏。
broad_mappings:
- rico:RecordSetType
- rico:RecordSetType
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
see_also:
- ArchivesForBuildingRecordsRecordSetType
- rico:RecordSetType
- rico-rst:Collection
structured_aliases:
- literal_form: bouwdocumentatiecollectie
in_language: nl
- literal_form: Baudokumentationssammlung
in_language: de
- literal_form: collection de documents de construction
in_language: fr
- literal_form: coleccion de documentos de construccion
in_language: es
- literal_form: مجموعة وثائق البناء
in_language: ar
- literal_form: koleksi dokumen konstruksi
in_language: id
- literal_form: 施工文件收藏
in_language: zh
keywords:
- construction documents
- blueprints
- technical drawings
- collection
slots:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_type
- has_score
- has_custodian
- record_holder_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: ConstructionDocumentCollection
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "ConstructionDocumentCollection"
has_custodian:
equals_string: ArchivesForBuildingRecords
equals_string: "ArchivesForBuildingRecords"
record_holder_note:
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords
custodians. Inverse of rico:isOrWasHolderOf.
equals_string: "This RecordSetType is typically held by ArchivesForBuildingRecords custodians"
comments:
- Follows rico-rst:Collection organizational principle
- Contains technical documentation and drawings
annotations:
specificity_score: "0.45"
specificity_rationale: Specific collection type for construction documents
custodian_types: "['ArchivesForBuildingRecords']"

View file

@ -1,8 +1,14 @@
id: https://nde.nl/ontology/hc/class/ArchivesRegionales
name: ArchivesRegionales
title: "Archives R\xE9gionales Type (France)"
title: Archives Régionales
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -12,12 +18,83 @@ imports:
classes:
ArchivesRegionales:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
class_uri: hc:ArchivesRegionales
description: >-
Regional archives in France preserving administrative records at the
regional governmental level, including regional council deliberations,
planning documents, and cultural affairs documentation.
alt_descriptions:
nl: >-
Regionale archieven in Frankrijk die administratieve archieven bewaren
op het regionale overheidsniveau, inclusief regionale raadsbesluiten,
planningsdocumenten en culturele zaken documentatie.
de: >-
Regionale Archive in Frankreich, die Verwaltungsunterlagen auf regionaler
Regierungsebene bewahren, einschliesslich Regionalratsberatungen,
Planungsunterlagen und Dokumentation kultureller Angelegenheiten.
fr: >-
Archives regionales en France preservant les documents administratifs au
niveau gouvernemental regional, y compris les deliberations du conseil
regional, les documents de planification et la documentation des affaires
culturelles.
es: >-
Archivos regionales en Francia que preservan registros administrativos
a nivel gubernamental regional, incluyendo deliberaciones del consejo
regional, documentos de planificacion y documentacion de asuntos culturales.
ar: >-
أرشيفات إقليمية في فرنسا تحافظ على السجلات الإدارية على المستوى
الحكومي الإقليمي، بما في ذلك مداولات المجلس الإقليمي ووثائق التخطيط
وتوثيق الشؤون الثقافية.
id: >-
Arsip regional di Prancis yang melestarikan catatan administratif pada
tingkat pemerintahan regional, termasuk deliberasi dewan regional,
dokumen perencanaan, dan dokumentasi urusan budaya.
zh: >-
法国地区档案馆,保存地区政府级别的行政记录,包括地区议会审议、规划文件
和文化事务文件。
exact_mappings:
- wd:Q2860567
broad_mappings:
- skos:Concept
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
structured_aliases:
- literal_form: regionaal archief
in_language: nl
- literal_form: Regionalarchiv
in_language: de
- literal_form: archives regionales
in_language: fr
- literal_form: archivos regionales
in_language: es
- literal_form: أرشيفات إقليمية
in_language: ar
- literal_form: arsip regional
in_language: id
- literal_form: 地区档案馆
in_language: zh
examples:
- value:
has_type: ArchiveOrganizationType
hold_record_set:
- RegionalAdministrationFonds
description: French regional archives
keywords:
- regional archives
- france
- administrative records
- regional government
slots:
- hold_record_set
description: "Regional archives in France (archives r\xE9gionales), preserving records\nat the regional administrative level.\n\n**Wikidata**: Q2860567\n\n**Geographic Restriction**: France only\n\n**Scope**:\nFrench regional archives preserve:\n- Regional council records and deliberations\n- Regional planning and development documents\n- Economic development agency records\n- Cultural affairs documentation\n- Education and training records (regional level)\n- Environmental and spatial planning documents\n\n**Administrative Context**:\nIn the French archival system:\n- Archives nationales (national level)\n- Archives r\xE9gionales (regional level) \u2190 This type\n- Archives d\xE9partementales (departmental level)\n- Archives communales (municipal level)\n\n**Related Types**:\n- DepartmentalArchives (Q2860456) - Departmental level in France\n- RegionalArchive (Q27032392) - Generic regional archive type\n- PublicArchivesInFrance (Q2421452) - French public archives\n"
slot_usage: {}
- hold_record_set
comments:
- Geographic restriction - France only
- Part of French archival hierarchy (national, regional, departmental, municipal)
- Preserves regional council records and planning documents
see_also:
- DepartmentalArchives
- RegionalArchive
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.45"
specificity_rationale: Specific archive type for French regional archives
custodian_types: "['ArchivesRegionales']"

View file

@ -1,8 +1,12 @@
id: https://nde.nl/ontology/hc/class/ArchivesRegionalesRecordSetType
name: ArchivesRegionalesRecordSetType
title: ArchivesRegionales Record Set Type
title: Archivesgionales Record Set Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -10,21 +14,77 @@ imports:
- ../slots/has_type
classes:
ArchivesRegionalesRecordSetType:
description: 'A rico:RecordSetType for classifying collections held by ArchivesRegionales custodians.
'
class_uri: hc:ArchivesRegionalesRecordSetType
description: >-
Classification category for record sets within French regional archives,
containing administrative records from regional governmental bodies.
alt_descriptions:
nl: >-
Classificatiecategorie voor recordsets binnen Franse regionale archieven,
met administratieve archieven van regionale overheidsinstanties.
de: >-
Klassifizierungskategorie fuer Datensatzgruppen in franzoesischen
Regionalarchiven mit Verwaltungsunterlagen regionaler Regierungsstellen.
fr: >-
Categorie de classification pour les ensembles d'enregistrements dans
les archives regionales francaises, contenant des documents administratifs
des organes gouvernementaux regionaux.
es: >-
Categoria de clasificacion para conjuntos de registros en archivos
regionales franceses, que contienen registros administrativos de los
organos gubernamentales regionales.
ar: >-
فئة تصنيف لمجموعات السجلات في الأرشيفات الإقليمية الفرنسية، التي تحتوي
على سجلات إدارية من الهيئات الحكومية الإقليمية.
id: >-
Kategori klasifikasi untuk kumpulan rekaman dalam arsip regional Prancis,
berisi catatan administratif dari badan pemerintah regional.
zh: >-
法国地区档案中记录集的分类类别,包含地区政府机构的行政记录。
is_a: CollectionType
class_uri: rico:RecordSetType
broad_mappings:
- rico:RecordSetType
- skos:Concept
structured_aliases:
- literal_form: regionaal-archief-recordsettype
in_language: nl
- literal_form: Regionalarchiv-Bestandsart
in_language: de
- literal_form: type de fonds d'archives regionales
in_language: fr
- literal_form: tipo de fondo de archivos regionales
in_language: es
- literal_form: نوع مجموعة سجلات الأرشيف الإقليمي
in_language: ar
- literal_form: tipe kumpulan rekaman arsip regional
in_language: id
- literal_form: 地区档案记录集类型
in_language: zh
examples:
- value:
has_type: ArchiveOrganizationType
has_score: 1.0
description: Regional administration fonds type
keywords:
- regional records
- french archives
- record set type
- classification
slots:
- has_type
- has_score
- has_scope
see_also:
- ArchivesRegionales
- rico:RecordSetType
- has_type
- has_score
- has_scope
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
any_of:
- equals_string: "hc:ArchiveOrganizationType"
comments:
- Abstract classification for French regional archive collections
- See ArchivesRegionalesRecordSetTypes.yaml for concrete subclasses
see_also:
- ArchivesRegionales
- rico:RecordSetType
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.35"
specificity_rationale: Specific record set type for French regional archives
custodian_types: "['ArchivesRegionales']"

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/ArchivesRegionalesRecordSetTypes
name: ArchivesRegionalesRecordSetTypes
title: ArchivesRegionales Record Set Type Subclasses
title: Archives Régionales Record Set Types
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -20,36 +20,75 @@ imports:
classes:
RegionalAdministrationFonds:
is_a: ArchivesRegionalesRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Regional government records (France).\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
class_uri: hc:RegionalAdministrationFonds
description: >-
Fonds of records from regional government administration in France,
including council deliberations, planning documents, and policy records.
alt_descriptions:
nl: >-
Fonds van archieven van regionale overheidsadministratie in Frankrijk,
inclusief raadsbesluiten, planningsdocumenten en beleidsarchieven.
de: >-
Fonds von Unterlagen der regionalen Regierungsverwaltung in Frankreich,
einschliesslich Ratsberatungen, Planungsunterlagen und Politikdokumenten.
fr: >-
Fonds de documents de l'administration regionale en France, comprenant
les deliberations du conseil, les documents de planification et les
archives politiques.
es: >-
Fondo de registros de la administracion gubernamental regional en Francia,
incluyendo deliberaciones del consejo, documentos de planificacion y
registros de politicas.
ar: >-
مجموعة سجلات الإدارة الحكومية الإقليمية في فرنسا، بما في ذلك مداولات
المجلس ووثائق التخطيط وسجلات السياسات.
id: >-
Fonds catatan administrasi pemerintah regional di Prancis, termasuk
deliberasi dewan, dokumen perencanaan, dan catatan kebijakan.
zh: >-
法国地区政府行政记录档案,包括议会审议、规划文件和政策记录。
broad_mappings:
- rico:RecordSetType
- rico:RecordSetType
related_mappings:
- rico-rst:Fonds
close_mappings:
- skos:Concept
see_also:
- ArchivesRegionalesRecordSetType
- rico:RecordSetType
- rico-rst:Fonds
structured_aliases:
- literal_form: regionaal-bestuursfonds
in_language: nl
- literal_form: Regionalverwaltungsfonds
in_language: de
- literal_form: fonds d'administration regionale
in_language: fr
- literal_form: fondo de administracion regional
in_language: es
- literal_form: صندوق الإدارة الإقليمية
in_language: ar
- literal_form: fonds administrasi regional
in_language: id
- literal_form: 地区行政档案
in_language: zh
keywords:
- regional administration
- government records
- fonds
- france
slots:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_type
- has_score
- has_custodian
- record_holder_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: RegionalAdministrationFonds
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "RegionalAdministrationFonds"
has_custodian:
equals_string: ArchivesRegionales
equals_string: "ArchivesRegionales"
record_holder_note:
equals_string: This RecordSetType is typically held by ArchivesRegionales
custodians. Inverse of rico:isOrWasHolderOf.
equals_string: "This RecordSetType is typically held by ArchivesRegionales custodians"
comments:
- Follows rico-rst:Fonds organizational principle
- Primary fonds type for French regional government records
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.5"
specificity_rationale: Specific fonds type for French regional administration
custodian_types: "['ArchivesRegionales']"

View file

@ -1,13 +1,12 @@
id: https://nde.nl/ontology/hc/class/ArchivingPlan
name: ArchivingPlan
title: Archiving Plan Class
description: 'A specific plan for archiving materials.
**RULE 53 COMPLIANT**: Created for expected_transfer_date migration.'
title: Archiving Plan
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
prov: http://www.w3.org/ns/prov#
schema: http://schema.org/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_description
@ -15,22 +14,80 @@ imports:
- ../slots/has_label
- ../slots/has_score
- ../slots/temporal_extent
default_prefix: hc
classes:
ArchivingPlan:
class_uri: prov:Plan
description: A plan detailing archiving activities and timelines.
class_uri: hc:ArchivingPlan
description: >-
Formal plan detailing archiving activities, timelines, and procedures
for the transfer, storage, and preservation of materials.
alt_descriptions:
nl: >-
Formeel plan dat archiveringsactiviteiten, tijdlijnen en procedures
detailleert voor de overdracht, opslag en bewaring van materialen.
de: >-
Formaler Plan, der Archivierungsaktivitaeten, Zeitplaene und Verfahren
fuer die Uebertragung, Lagerung und Erhaltung von Materialien detailliert.
fr: >-
Plan formel detaillant les activites d'archivage, les calendriers et
les procedures de transfert, de stockage et de preservation des materiaux.
es: >-
Plan formal que detalla las actividades de archivo, los cronogramas y
los procedimientos para la transferencia, almacenamiento y preservacion
de materiales.
ar: >-
خطة رسمية توضح بالتفصيل أنشطة الأرشفة والجداول الزمنية وإجراءات نقل
وتخزين وحفظ المواد.
id: >-
Rencana formal yang merinci aktivitas pengarsipan, jadwal, dan prosedur
untuk transfer, penyimpanan, dan pelestarian materi.
zh: >-
详细说明归档活动、时间表和材料移交、存储和保存程序的正式计划。
broad_mappings:
- prov:Plan
- schema:Plan
structured_aliases:
- literal_form: archiveringsplan
in_language: nl
- literal_form: Archivierungsplan
in_language: de
- literal_form: plan d'archivage
in_language: fr
- literal_form: plan de archivo
in_language: es
- literal_form: خطة الأرشفة
in_language: ar
- literal_form: rencana pengarsipan
in_language: id
- literal_form: 归档计划
in_language: zh
examples:
- value:
has_label: "Annual Transfer Plan 2024"
has_description: "Schedule for incoming archival transfers"
temporal_extent:
start_date: "2024-01-01"
end_date: "2024-12-31"
description: Annual archiving plan with transfer schedule
keywords:
- planning
- transfer
- preservation
- schedule
- archival procedure
slots:
- identified_by
- has_label
- has_description
- temporal_extent
- has_score
- identified_by
- has_label
- has_description
- temporal_extent
- has_score
slot_usage:
temporal_extent:
range: TimeSpan
inlined: true
comments:
- Created per Rule 53 migration for expected_transfer_date
- Documents planned archiving activities and timelines
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.3"
specificity_rationale: Specific planning class for archival operations
custodian_types: "['*']"

View file

@ -1,31 +1,13 @@
id: https://nde.nl/ontology/hc/class/area
id: https://nde.nl/ontology/hc/class/Area
name: area_class
title: Area Class
description: >-
Class representing an area measurement with value, unit, and context.
**RULE 53 COMPLIANT**: This is the authoritative class for area measurements,
replacing domain-specific float slots like area_hectares, building_floor_area_sqm,
and has_area_in_hectare.
**REPLACES**:
- area_hectares (OutdoorSite) - float in hectares
- building_floor_area_sqm (HistoricBuilding) - float in square meters
- has_area_in_hectare (bespoke, incorrectly created)
**ADVANTAGES OVER SIMPLE FLOAT**:
- Explicit unit specification (no ambiguity between m² and hectares)
- Temporal context (measurement date for historic facilities)
- Provenance (measurement method, source)
- Estimation flag (is_estimate for approximate values)
title: Area
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
qudt: http://qudt.org/schema/qudt/
geosparql: http://www.opengis.net/ont/geosparql#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_label
@ -34,28 +16,87 @@ imports:
- ../slots/approximate
- ../slots/has_date
- ../slots/measured_through
default_prefix: hc
classes:
Area:
class_uri: hc:Area
description: >-
A measurement of spatial extent (area) with value, unit, and metadata.
Captures area measurements for heritage facilities including outdoor sites,
buildings, rooms, and storage areas. Supports multiple units (m², hectares,
acres) with explicit unit specification.
**TEMPORAL ASPECT**: Areas can change over time (building extensions,
site acquisitions). The measurement_date captures when the area was measured.
**ESTIMATION SUPPORT**: Heritage facilities often have estimated areas,
especially for historic buildings. The is_estimate flag indicates uncertainty.
class_uri: qudt:QuantityValue
exact_mappings:
Measurement of spatial extent with value, unit, and metadata, supporting
multiple units (m², hectares, acres) for heritage facilities including
outdoor sites, buildings, rooms, and storage areas.
alt_descriptions:
nl: >-
Meting van ruimtelijke omvang met waarde, eenheid en metadata, ondersteunend
meerdere eenheden (m², hectare, acres) voor erfgoedfaciliteiten inclusief
buitenterreinen, gebouwen, ruimtes en opslagruimtes.
de: >-
Messung der raeumlichen Ausdehnung mit Wert, Einheit und Metadaten, die
mehrere Einheiten (m², Hektar, Acres) fuer Heritage-Einrichtungen
unterstuetzt, einschliesslich Aussenanlagen, Gebaeude, Raeume und
Lagerraeume.
fr: >-
Mesure de l'etendue spatiale avec valeur, unite et metadonnees, prenant
en charge plusieurs unites (m², hectares, acres) pour les installations
patrimoniales, y compris les sites exterieurs, les batiments, les
salles et les espaces de stockage.
es: >-
Medicion de la extension espacial con valor, unidad y metadatos, que
admite multiples unidades (m², hectareas, acres) para instalaciones
patrimoniales, incluidos sitios al aire libre, edificios, salas y
areas de almacenamiento.
ar: >-
قياس المدى المكاني مع القيمة والوحدة والبيانات الوصفية، ودعم وحدات
متعددة (م²، هكتار، فدان) لمرافق التراث بما في ذلك المواقع الخارجية
والمباني والغرف ومساحات التخزين.
id: >-
Pengukuran luas ruang dengan nilai, satuan, dan metadata, mendukung
berbagai satuan (m², hektar, acre) untuk fasilitas warisan termasuk
situs luar ruangan, bangunan, ruangan, dan area penyimpanan.
zh: >-
具有值、单位和元数据的空间范围测量,支持多种单位(平方米、公顷、英亩),
用于遗产设施,包括户外场地、建筑物、房间和存储区域。
broad_mappings:
- qudt:QuantityValue
close_mappings:
- schema:QuantitativeValue
related_mappings:
- geosparql:hasArea
structured_aliases:
- literal_form: oppervlakte
in_language: nl
- literal_form: Flaeche
in_language: de
- literal_form: superficie
in_language: fr
- literal_form: area
in_language: es
- literal_form: مساحة
in_language: ar
- literal_form: luas
in_language: id
- literal_form: 面积
in_language: zh
examples:
- value:
has_value: 25.0
has_measurement_unit:
has_type: HECTARE
has_symbol: "ha"
has_label: "Sculpture garden area"
description: Site area in hectares
- value:
has_value: 5000.0
has_measurement_unit:
has_type: SQUARE_METER
has_symbol: "m²"
approximate: false
has_label: "Total floor area"
description: Building floor area in square meters
keywords:
- measurement
- spatial
- square meters
- hectares
- facility
- floor area
slots:
- has_value
- has_measurement_unit
@ -67,74 +108,24 @@ classes:
has_value:
range: float
required: true
examples:
- value: 25.0
- value: 5000.0
has_measurement_unit:
range: MeasureUnit
required: true
inlined: true
examples:
- value:
has_type: HECTARE
has_symbol: "ha"
- value:
has_type: SQUARE_METER
has_symbol: "m²"
measurement_date:
range: date
required: false
examples:
- value: "2024-01-15"
- value: "1985-06-01"
approximate:
range: boolean
required: false
examples:
- value: true
- value: false
measured_through:
# range: string
required: false
examples:
- value: "GIS analysis"
- value: "Land survey"
- value: "Historical records"
has_label:
# range: string
examples:
- value: "Total site area"
- value: "Building floor area"
examples:
- value:
has_unit:
has_type: HECTARE
has_symbol: "ha"
has_label: "Sculpture garden area"
- value:
has_unit:
has_type: SQUARE_METER
has_symbol: "m²"
measurement_date: "2023-03-15"
is_estimate: false
measurement_method: "Architectural survey"
has_label: "Total floor area"
- value:
has_unit:
has_type: HECTARE
has_symbol: "ha"
is_estimate: true
measurement_method: "Historical records"
has_label: "Estate grounds"
comments:
- Rule 53 compliant - replaces domain-specific float slots
- Replaces area_hectares, building_floor_area_sqm
- Supports temporal context via measurement_date
- Estimation flag for approximate values
annotations:
custodian_types: '["*"]'
custodian_types_rationale: >-
Area measurements applicable to all heritage custodian types.
specificity_score: 0.4
specificity_rationale: >-
Broadly useful class - area measurements relevant for site planning,
collection storage, visitor capacity, and facility management.
# REMOVED inline slots 2026-01-16 - Rule 48 violation
# Slots are imported from ../slots/ - do not define inline
specificity_score: "0.4"
specificity_rationale: Broadly useful class for facility measurements
custodian_types: "['*']"

View file

@ -1,29 +1,94 @@
id: https://nde.nl/ontology/hc/class/Arrangement
name: Arrangement
title: Arrangement
description: The arrangement of a collection.
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
classes:
Arrangement:
class_uri: rico:RecordSet
description: The arrangement of a collection.
slots:
- has_description
- has_type
- has_level
- has_note
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
crm: http://www.cidoc-crm.org/cidoc-crm/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_description
- ../slots/has_level
- ../slots/has_note
- ../slots/has_type
classes:
Arrangement:
class_uri: hc:Arrangement
description: >-
Organization and ordering of archival materials according to a scheme
or system, defining the hierarchical structure and physical or intellectual
arrangement of records.
alt_descriptions:
nl: >-
Organisatie en ordening van archiefmaterialen volgens een schema of
systeem, die de hiërarchische structuur en fysieke of intellectuele
ordening van archieven definieert.
de: >-
Organisation und Ordnung von Archivmaterialien nach einem Schema oder
System, das die hierarchische Struktur und physische oder intellektuelle
Anordnung von Unterlagen definiert.
fr: >-
Organisation et classement des materiaux d'archives selon un schema ou
un systeme, definissant la structure hierarchique et l'arrangement
physique ou intellectuel des documents.
es: >-
Organizacion y ordenacion de materiales archivisticos segun un esquema
o sistema, definiendo la estructura jerarquica y el arreglo fisico o
intelectual de los registros.
ar: >-
تنظيم وترتيب المواد الأرشيفية وفقًا لمخطط أو نظام، وتحديد الهيكل
الهرمي والترتيب المادي أو الفكري للسجلات.
id: >-
Organisasi dan pengurutan materi arsip menurut skema atau sistem,
mendefinisikan struktur hierarki dan pengaturan fisik atau intelektual
catatan.
zh: >-
根据方案或系统对档案材料进行组织和排序,定义记录的层级结构和物理或
智力排列。
broad_mappings:
- rico:RecordSet
- crm:E29_Design_or_Procedure
structured_aliases:
- literal_form: ordening
in_language: nl
- literal_form: Ordnung
in_language: de
- literal_form: arrangement
in_language: fr
- literal_form: arreglo
in_language: es
- literal_form: ترتيب
in_language: ar
- literal_form: pengaturan
in_language: id
- literal_form: 排列
in_language: zh
examples:
- value:
has_type: ProvenanceBasedArrangement
has_level: SeriesLevel
has_description: "Arranged by originating department"
description: Provenance-based archival arrangement
keywords:
- organization
- ordering
- hierarchy
- archival structure
- classification
slots:
- has_description
- has_type
- has_level
- has_note
comments:
- Describes how archival materials are organized
- Links to ArrangementType for ordering method
- Links to ArrangementLevel for hierarchical position
annotations:
specificity_score: "0.3"
specificity_rationale: Core archival concept for record organization
custodian_types: "['*']"

View file

@ -1,18 +1,12 @@
id: https://nde.nl/ontology/hc/class/ArrangementLevel
name: ArrangementLevel
title: Arrangement Level Class
title: Arrangement Level
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
default_prefix: hc
imports:
- linkml:types
@ -22,27 +16,86 @@ imports:
- ../slots/has_rank
classes:
ArrangementLevel:
class_uri: skos:Concept
description: 'A level of arrangement in an archival hierarchy (e.g. Fonds, Series, File, Item).
**Ontological Alignment**:
- `rico:RecordSetType`: Often used to classify record sets by level.
- `skos:Concept`: Concept in an arrangement scheme.
'
class_uri: hc:ArrangementLevel
description: >-
Hierarchical level within an archival arrangement scheme, such as fonds,
series, file, or item, indicating the position in the descriptive hierarchy.
alt_descriptions:
nl: >-
Hiërarchisch niveau binnen een archiefordeningsschema, zoals archief,
serie, dossier of stuk, dat de positie in de beschrijvingshiërarchie
aangeeft.
de: >-
Hierarchische Ebene innerhalb eines Archivordnungsschemas, wie Bestand,
Serie, Akte oder Einzelstueck, das die Position in der
Beschreibungshierarchie anzeigt.
fr: >-
Niveau hierarchique dans un schema d'arrangement d'archives, tel que
fonds, serie, article ou piece, indiquant la position dans la
hierarchie descriptive.
es: >-
Nivel jerarquico dentro de un esquema de ordenacion archivistica, como
fondo, serie, expediente o item, que indica la posicion en la jerarquia
descriptiva.
ar: >-
مستوى هرمي ضمن مخطط ترتيب أرشيفي، مثل الأرشيف أو السلسلة أو الملف
أو العنصر، الذي يشير إلى الموقع في التسلسل الهرمي للوصف.
id: >-
Tingkat hierarki dalam skema pengaturan arsip, seperti fonds, seri,
berkas, atau item, yang menunjukkan posisi dalam hierarki deskriptif.
zh: >-
档案排列方案中的层级,如全宗、系列、文件或条目,表示在描述层级中的位置。
abstract: true
broad_mappings:
- skos:Concept
- rico:RecordSetType
- crm:E55_Type
structured_aliases:
- literal_form: ordeningsniveau
in_language: nl
- literal_form: Ordnungsebene
in_language: de
- literal_form: niveau d'arrangement
in_language: fr
- literal_form: nivel de arreglo
in_language: es
- literal_form: مستوى الترتيب
in_language: ar
- literal_form: tingkat pengaturan
in_language: id
- literal_form: 排列层级
in_language: zh
examples:
- value:
has_code: "FONDS"
has_label: "Fonds"
has_rank: 1
description: Top-level arrangement (fonds)
- value:
has_code: "ITEM"
has_label: "Item"
has_rank: 6
description: Lowest arrangement level (item)
keywords:
- hierarchy
- fonds
- series
- file
- item
- archival level
slots:
- has_label
- has_code
- has_description
- has_rank
- has_label
- has_code
- has_description
- has_rank
slot_usage:
has_code:
required: true
has_rank:
comments:
- Abstract base class - do not instantiate directly
- See ArrangementLevelTypes.yaml for concrete subclasses
- Standard levels: Fonds, Subfonds, Series, Subseries, File, Item
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.3"
specificity_rationale: Core archival hierarchy concept
custodian_types: "['*']"

View file

@ -1,55 +1,373 @@
id: https://nde.nl/ontology/hc/class/ArrangementLevelTypes
name: arrangement_level_types_classes
title: Arrangement Level Types Classes
description: 'Concrete subclasses for ArrangementLevel taxonomy.
Follows Rule 0b Type/Types naming pattern.
'
imports:
- linkml:types
title: Arrangement Level Types
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
rico: https://www.ica.org/standards/RiC/ontology#
rico-rst: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#
default_prefix: hc
imports:
- linkml:types
- ./ArrangementLevel
classes:
FondsLevel:
is_a: ArrangementLevel
class_uri: hc:FondsLevel
description: Top level of arrangement (Fonds).
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
description: >-
Top hierarchical level representing the entire body of records from a
single creator or source, forming the highest level of archival arrangement.
alt_descriptions:
nl: >-
Hoogste hiërarchische niveau dat de volledige hoeveelheid archieven van
een enkele maker of bron vertegenwoordigt, het hoogste niveau van
archiefordening.
de: >-
Hoechste hierarchische Ebene, die den gesamten Bestand von Unterlagen
eines einzigen Erzeugers oder einer Quelle darstellt, die hoechste
Ebene der Archivordnung.
fr: >-
Niveau hierarchique superieur representant l'ensemble des documents
d'un seul createur ou source, formant le niveau le plus eleve de
l'arrangement d'archives.
es: >-
Nivel jerarquico superior que representa todo el cuerpo de registros
de un unico creador o fuente, formando el nivel mas alto de ordenacion
archivistica.
ar: >-
أعلى مستوى هرمي يمثل مجموعة السجلات الكاملة من منشئ أو مصدر واحد،
ويشكل أعلى مستوى من الترتيب الأرشيفي.
id: >-
Tingkat hierarki tertinggi yang mewakili seluruh badan catatan dari
satu pencipta atau sumber, membentuk tingkat tertinggi pengaturan arsip.
zh: >-
代表来自单个创建者或来源的全部记录的最高层级,构成档案排列的最高级别。
broad_mappings:
- skos:Concept
- skos:Concept
- rico-rst:Fonds
structured_aliases:
- literal_form: archiefniveau
in_language: nl
- literal_form: Bestandsebene
in_language: de
- literal_form: niveau de fonds
in_language: fr
- literal_form: nivel de fondo
in_language: es
- literal_form: مستوى الأرشيف
in_language: ar
- literal_form: tingkat fonds
in_language: id
- literal_form: 全宗级
in_language: zh
keywords:
- fonds
- top level
- creator
- highest level
comments:
- Highest level in ISAD(G) hierarchy
- Represents complete records of a creator
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival hierarchy level
custodian_types: "['*']"
SubfondsLevel:
is_a: ArrangementLevel
class_uri: hc:SubfondsLevel
description: Subdivision of a fonds (Subfonds).
description: >-
Subdivision of a fonds, representing a major organizational unit or
functional division within the creator's structure.
alt_descriptions:
nl: >-
Onderverdeling van een archief, die een grote organisatorische eenheid
of functionele afdeling binnen de structuur van de maker vertegenwoordigt.
de: >-
Unterteilung eines Bestands, die eine wichtige Organisationseinheit
oder funktionale Abteilung innerhalb der Struktur des Erzeugers darstellt.
fr: >-
Subdivision d'un fonds, representant une unite organisationnelle majeure
ou une division fonctionnelle dans la structure du createur.
es: >-
Subdivision de un fondo, que representa una unidad organizativa
importante o division funcional dentro de la estructura del creador.
ar: >-
تقسيم فرعي للأرشيف، يمثل وحدة تنظيمية رئيسية أو قسم وظيفي ضمن
هيكل المنشئ.
id: >-
Subdivisi fonds, mewakili unit organisasi utama atau divisi fungsional
dalam struktur pencipta.
zh: >-
全宗的细分,代表创建者结构中的主要组织单位或职能部门。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: subarchiefniveau
in_language: nl
- literal_form: Teilbestandsebene
in_language: de
- literal_form: niveau de sous-fonds
in_language: fr
- literal_form: nivel de subfondo
in_language: es
- literal_form: مستوى الأرشيف الفرعي
in_language: ar
- literal_form: tingkat sub-fonds
in_language: id
- literal_form: 分全宗级
in_language: zh
keywords:
- subfonds
- subdivision
- organizational unit
comments:
- Optional level between fonds and series
- Used for large or complex fonds
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival hierarchy level
custodian_types: "['*']"
SeriesLevel:
is_a: ArrangementLevel
class_uri: hc:SeriesLevel
description: Series level (Series).
description: >-
Hierarchical level grouping files that relate to a particular function,
activity, or subject, maintaining the original order of the creator.
alt_descriptions:
nl: >-
Hiërarchisch niveau dat dossiers groepeert die betrekking hebben op een
bepaalde functie, activiteit of onderwerp, waarbij de oorspronkelijke
ordening van de maker behouden blijft.
de: >-
Hierarchische Ebene, die Akten zusammenfasst, die sich auf eine bestimmte
Funktion, Taetigkeit oder ein Thema beziehen, wobei die urspruengliche
Ordnung des Erzeugers beibehalten wird.
fr: >-
Niveau hierarchique regroupant les dossiers lies a une fonction, une
activite ou un sujet particulier, preservant l'ordre original du
createur.
es: >-
Nivel jerarquico que agrupa expedientes relacionados con una funcion,
actividad o tema particular, manteniendo el orden original del creador.
ar: >-
مستوى هرمي يجمع الملفات المتعلقة بوظيفة أو نشاط أو موضوع معين،
مع الحفاظ على الترتيب الأصلي للمنشئ.
id: >-
Tingkat hierarki yang mengelompokkan berkas yang terkait dengan fungsi,
aktivitas, atau subjek tertentu, mempertahankan urutan asli pencipta.
zh: >-
将与特定职能、活动或主题相关的文件分组的层级,保持创建者的原始顺序。
broad_mappings:
- skos:Concept
- skos:Concept
- rico-rst:Series
structured_aliases:
- literal_form: serieniveau
in_language: nl
- literal_form: Serienebene
in_language: de
- literal_form: niveau de serie
in_language: fr
- literal_form: nivel de serie
in_language: es
- literal_form: مستوى السلسلة
in_language: ar
- literal_form: tingkat seri
in_language: id
- literal_form: 系列级
in_language: zh
keywords:
- series
- function
- activity
- grouping
comments:
- Key organizational level in archival hierarchy
- Files within series share common characteristics
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival hierarchy level
custodian_types: "['*']"
SubseriesLevel:
is_a: ArrangementLevel
class_uri: hc:SubseriesLevel
description: Subdivision of a series (Subseries).
description: >-
Subdivision of a series, representing a narrower functional or subject
grouping within the broader series.
alt_descriptions:
nl: >-
Onderverdeling van een serie, die een smallere functionele of
onderwerpgroepering binnen de bredere serie vertegenwoordigt.
de: >-
Unterteilung einer Serie, die eine engere funktionale oder thematische
Gruppierung innerhalb der breiteren Serie darstellt.
fr: >-
Subdivision d'une serie, representant un regroupement fonctionnel ou
thematique plus etroit dans la serie plus large.
es: >-
Subdivision de una serie, que representa una agrupacion funcional o
tematica mas estrecha dentro de la serie mas amplia.
ar: >-
تقسيم فرعي لسلسلة، يمثل تجميعًا وظيفيًا أو موضوعيًا أضيق ضمن
السلسلة الأوسع.
id: >-
Subdivisi seri, mewakili pengelompokan fungsional atau subjek yang lebih
sempit dalam seri yang lebih luas.
zh: >-
系列的细分,代表更广泛系列中更狭窄的职能或主题分组。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: subserieniveau
in_language: nl
- literal_form: Unterserienebene
in_language: de
- literal_form: niveau de sous-serie
in_language: fr
- literal_form: nivel de subserie
in_language: es
- literal_form: مستوى السلسلة الفرعية
in_language: ar
- literal_form: tingkat sub-seri
in_language: id
- literal_form: 子系列级
in_language: zh
keywords:
- subseries
- subdivision
- narrower grouping
comments:
- Optional level for complex series
- Provides additional granularity when needed
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival hierarchy level
custodian_types: "['*']"
FileLevel:
is_a: ArrangementLevel
class_uri: hc:FileLevel
description: File level (File).
description: >-
Hierarchical level representing an organized unit of documents grouped
together for ease of reference, handling, or because of subject or
functional relationship.
alt_descriptions:
nl: >-
Hiërarchisch niveau dat een georganiseerde eenheid van documenten
vertegenwoordigt die zijn gegroepeerd voor gemakkelijke raadpleging,
behandeling of vanwege onderwerpelijke of functionele relatie.
de: >-
Hierarchische Ebene, die eine organisierte Einheit von Dokumenten
darstellt, die zur einfacheren Bezugnahme, Handhabung oder aufgrund
inhaltlicher oder funktionaler Beziehung zusammengefasst sind.
fr: >-
Niveau hierarchique representant une unite organises de documents
regroupes pour faciliter la reference, la manipulation ou en raison
d'une relation thematique ou fonctionnelle.
es: >-
Nivel jerarquico que representa una unidad organizada de documentos
agrupados para facilitar la referencia, manejo o debido a una relacion
tematica o funcional.
ar: >-
مستوى هرمي يمثل وحدة منظمة من الوثائق مجمعة معًا لتسهيل المرجعية
أو المعالجة أو بسبب العلاقة الموضوعية أو الوظيفية.
id: >-
Tingkat hierarki yang mewakili unit terorganisir dari dokumen yang
dikelompokkan untuk kemudahan referensi, penanganan, atau karena
hubungan subjek atau fungsional.
zh: >-
代表为便于参考、处理或因主题或职能关系而分组的有组织文件单元的层级。
broad_mappings:
- skos:Concept
- skos:Concept
- rico-rst:File
structured_aliases:
- literal_form: dossierniveau
in_language: nl
- literal_form: Aktebene
in_language: de
- literal_form: niveau de dossier
in_language: fr
- literal_form: nivel de expediente
in_language: es
- literal_form: مستوى الملف
in_language: ar
- literal_form: tingkat berkas
in_language: id
- literal_form: 文件级
in_language: zh
keywords:
- file
- dossier
- document unit
- grouping
comments:
- Standard archival unit of arrangement
- Contains related documents
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival hierarchy level
custodian_types: "['*']"
ItemLevel:
is_a: ArrangementLevel
class_uri: hc:ItemLevel
description: Item level (Item).
description: >-
Lowest hierarchical level representing the smallest intellectually
indivisible archival unit, such as a single document, photograph, or
letter.
alt_descriptions:
nl: >-
Laagste hiërarchische niveau dat de kleinste intellectueel ondeelbare
archiefschaal vertegenwoordigt, zoals een enkel document, foto of brief.
de: >-
Niedrigste hierarchische Ebene, die die kleinste intellektuell unteilbare
Archiveinheit darstellt, wie ein einzelnes Dokument, Foto oder Brief.
fr: >-
Niveau hierarchique le plus bas representant la plus petite unite
archivistique intellectuellement indivisible, comme un seul document,
photographie ou lettre.
es: >-
Nivel jerarquico mas bajo que representa la unidad archivistica mas
pequena intelectualmente indivisible, como un solo documento, fotografia
o carta.
ar: >-
أدنى مستوى هرمي يمثل أصغر وحدة أرشيفية غير قابلة للتجزئة فكريًا،
مثل وثيقة واحدة أو صورة أو رسالة.
id: >-
Tingkat hierarki terendah yang mewakili unit arsip terkecil yang tidak
dapat dibagi secara intelektual, seperti satu dokumen, foto, atau surat.
zh: >-
最低层级,代表在智力上不可分割的最小档案单元,如单份文件、照片或信件。
broad_mappings:
- skos:Concept
- skos:Concept
- rico-rst:Item
structured_aliases:
- literal_form: stukniveau
in_language: nl
- literal_form: Einzeleben
in_language: de
- literal_form: niveau de piece
in_language: fr
- literal_form: nivel de item
in_language: es
- literal_form: مستوى العنصر
in_language: ar
- literal_form: tingkat item
in_language: id
- literal_form: 条目级
in_language: zh
keywords:
- item
- document
- lowest level
- indivisible unit
comments:
- Lowest level in archival hierarchy
- Most granular descriptive unit
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival hierarchy level
custodian_types: "['*']"

View file

@ -1,23 +1,93 @@
id: https://nde.nl/ontology/hc/class/ArrangementType
name: ArrangementType
title: Arrangement Type
description: Type of arrangement.
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#
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
crm: http://www.cidoc-crm.org/cidoc-crm/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_label
- ../slots/has_code
- ../slots/has_description
classes:
ArrangementType:
class_uri: skos:Concept
description: Type of arrangement.
class_uri: hc:ArrangementType
description: >-
Classification of the method or principle used to organize archival
materials, such as alphabetical, chronological, numerical, or
provenance-based ordering.
alt_descriptions:
nl: >-
Classificatie van de methode of het principe dat wordt gebruikt om
archiefmaterialen te organiseren, zoals alfabetische, chronologische,
numerieke of herkomstgebaseerde ordening.
de: >-
Klassifizierung der Methode oder des Prinzips, das zur Organisation
von Archivmaterialien verwendet wird, wie alphabetische, chronologische,
numerische oder provenienzbasierte Ordnung.
fr: >-
Classification de la methode ou du principe utilise pour organiser les
materiaux d'archives, comme le classement alphabetique, chronologique,
numerique ou base sur la provenance.
es: >-
Clasificacion del metodo o principio utilizado para organizar materiales
archivisticos, como ordenacion alfabetica, cronologica, numerica o
basada en la procedencia.
ar: >-
تصنيف الطريقة أو المبدأ المستخدم لتنظيم المواد الأرشيفية، مثل
الترتيب الأبجدي أو الزمني أو الرقمي أو القائم على المنشأ.
id: >-
Klasifikasi metode atau prinsip yang digunakan untuk mengatur materi
arsip, seperti pengurutan alfabetis, kronologis, numerik, atau
berbasis provenans.
zh: >-
用于组织档案材料的方法或原则的分类,如按字母、按时间、按数字或按来源排序。
abstract: true
broad_mappings:
- skos:Concept
- crm:E55_Type
structured_aliases:
- literal_form: ordeningstype
in_language: nl
- literal_form: Ordnungstyp
in_language: de
- literal_form: type d'arrangement
in_language: fr
- literal_form: tipo de arreglo
in_language: es
- literal_form: نوع الترتيب
in_language: ar
- literal_form: tipe pengaturan
in_language: id
- literal_form: 排列类型
in_language: zh
examples:
- value:
has_label: "Chronological"
has_code: "CHRON"
description: Materials arranged by date
- value:
has_label: "Provenance-based"
has_code: "PROV"
description: Materials arranged by creator/source
keywords:
- ordering method
- classification
- organization
- arrangement principle
slots:
- has_label
- has_label
- has_code
- has_description
comments:
- Abstract base class - do not instantiate directly
- See ArrangementTypes.yaml for concrete subclasses
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.25"
specificity_rationale: Core archival concept for ordering methods
custodian_types: "['*']"

View file

@ -1,51 +1,292 @@
id: https://nde.nl/ontology/hc/class/ArrangementTypes
name: arrangement_types_classes
title: Arrangement Types Classes
description: 'Concrete subclasses for ArrangementType taxonomy.
Follows Rule 0b Type/Types naming pattern.
'
imports:
- ./ArrangementType
- linkml:types
title: Arrangement Types
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
rico: https://www.ica.org/standards/RiC/ontology#
default_prefix: hc
imports:
- ./ArrangementType
- linkml:types
classes:
AlphabeticalArrangement:
is_a: ArrangementType
class_uri: hc:AlphabeticalArrangement
description: Arranged alphabetically by name or title.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
description: >-
Arrangement method organizing materials in alphabetical order by name,
title, subject, or other textual element.
alt_descriptions:
nl: >-
Ordeningsmethode die materialen in alfabetische volgorde organiseert
op naam, titel, onderwerp of ander tekstueel element.
de: >-
Ordnungsmethode, die Materialien in alphabetischer Reihenfolge nach
Name, Titel, Thema oder anderem Textelement organisiert.
fr: >-
Methode d'arrangement organisant les materiaux par ordre alphabetique
par nom, titre, sujet ou autre element textuel.
es: >-
Metodo de ordenacion que organiza materiales en orden alfabetico por
nombre, titulo, tema u otro elemento textual.
ar: >-
طريقة ترتيب تنظم المواد بالترتيب الأبجدي حسب الاسم أو العنوان أو
الموضوع أو عنصر نصي آخر.
id: >-
Metode pengaturan yang mengatur materi dalam urutan alfabetis berdasarkan
nama, judul, subjek, atau elemen tekstual lainnya.
zh: >-
按名称、标题、主题或其他文本元素的字母顺序组织材料的排列方法。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: alfabetische ordening
in_language: nl
- literal_form: Alphabetische Ordnung
in_language: de
- literal_form: arrangement alphabetique
in_language: fr
- literal_form: ordenacion alfabetica
in_language: es
- literal_form: ترتيب أبجدي
in_language: ar
- literal_form: pengaturan alfabetis
in_language: id
- literal_form: 按字母排列
in_language: zh
keywords:
- alphabetical
- A-Z
- name order
comments:
- Common for correspondence and name-based collections
annotations:
specificity_score: "0.3"
specificity_rationale: Specific ordering method
custodian_types: "['*']"
ChronologicalArrangement:
is_a: ArrangementType
class_uri: hc:ChronologicalArrangement
description: Arranged chronologically by date.
description: >-
Arrangement method organizing materials by date or time sequence,
from earliest to latest or vice versa.
alt_descriptions:
nl: >-
Ordeningsmethode die materialen organiseert op datum of tijdsvolgorde,
van vroegst naar laatst of andersom.
de: >-
Ordnungsmethode, die Materialien nach Datum oder Zeitfolge organisiert,
von frueh bis spaet oder umgekehrt.
fr: >-
Methode d'arrangement organisant les materiaux par date ou sequence
temporelle, du plus ancien au plus recent ou inversement.
es: >-
Metodo de ordenacion que organiza materiales por fecha o secuencia
temporal, del mas antiguo al mas reciente o viceversa.
ar: >-
طريقة ترتيب تنظم المواد حسب التاريخ أو التسلسل الزمني، من الأقدم
إلى الأحدث أو العكس.
id: >-
Metode pengaturan yang mengatur materi berdasarkan tanggal atau urutan
waktu, dari paling awal ke paling akhir atau sebaliknya.
zh: >-
按日期或时间顺序组织材料的排列方法,从最早到最晚或反之。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: chronologische ordening
in_language: nl
- literal_form: Chronologische Ordnung
in_language: de
- literal_form: arrangement chronologique
in_language: fr
- literal_form: ordenacion cronologica
in_language: es
- literal_form: ترتيب زمني
in_language: ar
- literal_form: pengaturan kronologis
in_language: id
- literal_form: 按时间排列
in_language: zh
keywords:
- chronological
- date order
- time sequence
comments:
- Common for institutional records and diaries
annotations:
specificity_score: "0.3"
specificity_rationale: Specific ordering method
custodian_types: "['*']"
NumericalArrangement:
is_a: ArrangementType
class_uri: hc:NumericalArrangement
description: Arranged numerically by index or reference code.
description: >-
Arrangement method organizing materials by numbers, reference codes,
or other numeric identifiers.
alt_descriptions:
nl: >-
Ordeningsmethode die materialen organiseert op nummers, referentiecodes
of andere numerieke identifiers.
de: >-
Ordnungsmethode, die Materialien nach Nummern, Referenzcodes oder anderen
numerischen Kennungen organisiert.
fr: >-
Methode d'arrangement organisant les materiaux par numeros, codes de
reference ou autres identifiants numeriques.
es: >-
Metodo de ordenacion que organiza materiales por numeros, codigos de
referencia u otros identificadores numericos.
ar: >-
طريقة ترتيب تنظم المواد بالأرقام أو الرموز المرجعية أو المعرفات
الرقمية الأخرى.
id: >-
Metode pengaturan yang mengatur materi berdasarkan nomor, kode referensi,
atau identifier numerik lainnya.
zh: >-
按数字、参考代码或其他数字标识符组织材料的排列方法。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: numerieke ordening
in_language: nl
- literal_form: Numerische Ordnung
in_language: de
- literal_form: arrangement numerique
in_language: fr
- literal_form: ordenacion numerica
in_language: es
- literal_form: ترتيب رقمي
in_language: ar
- literal_form: pengaturan numerik
in_language: id
- literal_form: 按数字排列
in_language: zh
keywords:
- numerical
- number order
- reference codes
comments:
- Common for accession records and inventory systems
annotations:
specificity_score: "0.3"
specificity_rationale: Specific ordering method
custodian_types: "['*']"
ProvenanceBasedArrangement:
is_a: ArrangementType
class_uri: hc:ProvenanceBasedArrangement
description: Arranged according to the provenance or original order (respect des
fonds).
description: >-
Arrangement method maintaining the original order as created or
received by the creator, following the respect des fonds principle.
alt_descriptions:
nl: >-
Ordeningsmethode die de oorspronkelijke volgorde behoudt zoals gemaakt
of ontvangen door de maker, volgens het beginsel van respect voor het
archief.
de: >-
Ordnungsmethode, die die urspruengliche Ordnung beibehaelt, wie sie
vom Erzeuger erstellt oder empfangen wurde, nach dem Prinzip der
Provenienz.
fr: >-
Methode d'arrangement maintenant l'ordre original tel que cree ou recu
par le createur, suivant le principe du respect des fonds.
es: >-
Metodo de ordenacion que mantiene el orden original creado o recibido
por el creador, siguiendo el principio de respeto de los fondos.
ar: >-
طريقة ترتيب تحافظ على الترتيب الأصلي كما أنشأه أو تلقاه المنشئ،
وفقًا لمبدأ احترام الأرشيف.
id: >-
Metode pengaturan yang mempertahankan urutan asli seperti yang dibuat
atau diterima oleh pencipta, mengikuti prinsip respect des fonds.
zh: >-
保持创建者创建或接收的原始顺序的排列方法,遵循尊重全宗原则。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: herkomstgebaseerde ordening
in_language: nl
- literal_form: Provenienz-basierte Ordnung
in_language: de
- literal_form: arrangement base sur la provenance
in_language: fr
- literal_form: ordenacion basada en procedencia
in_language: es
- literal_form: ترتيب قائم على المنشأ
in_language: ar
- literal_form: pengaturan berbasis provenans
in_language: id
- literal_form: 按来源排列
in_language: zh
keywords:
- provenance
- original order
- respect des fonds
- creator order
comments:
- Fundamental archival principle
- Preserves context of creation
annotations:
specificity_score: "0.35"
specificity_rationale: Core archival ordering principle
custodian_types: "['*']"
SubjectBasedArrangement:
is_a: ArrangementType
class_uri: hc:SubjectBasedArrangement
description: Arranged by subject matter or topic.
description: >-
Arrangement method organizing materials by subject matter, topic,
or thematic category regardless of provenance.
alt_descriptions:
nl: >-
Ordeningsmethode die materialen organiseert op onderwerp, thema of
thematische categorie, ongeacht de herkomst.
de: >-
Ordnungsmethode, die Materialien nach Thema, Gegenstand oder thematischer
Kategorie organisiert, unabhaengig von der Provenienz.
fr: >-
Methode d'arrangement organisant les materiaux par sujet, theme ou
categorie thematique independamment de la provenance.
es: >-
Metodo de ordenacion que organiza materiales por tema, asunto o
categoria tematica independientemente de la procedencia.
ar: >-
طريقة ترتيب تنظم المواد حسب الموضوع أو الموضوع أو الفئة الموضوعية
بغض النظر عن المنشأ.
id: >-
Metode pengaturan yang mengatur materi berdasarkan subjek, topik, atau
kategori tematik terlepas dari provenans.
zh: >-
按主题、话题或主题类别组织材料的排列方法,不考虑来源。
broad_mappings:
- skos:Concept
- skos:Concept
structured_aliases:
- literal_form: thematische ordening
in_language: nl
- literal_form: Sachthematische Ordnung
in_language: de
- literal_form: arrangement par sujet
in_language: fr
- literal_form: ordenacion por tema
in_language: es
- literal_form: ترتيب موضوعي
in_language: ar
- literal_form: pengaturan berbasis subjek
in_language: id
- literal_form: 按主题排列
in_language: zh
keywords:
- subject
- thematic
- topic-based
comments:
- Common for artificial collections and vertical files
- May override provenance principle in some contexts
annotations:
specificity_score: "0.3"
specificity_rationale: Specific ordering method
custodian_types: "['*']"

View file

@ -1,8 +1,14 @@
id: https://nde.nl/ontology/hc/class/ArtArchive
name: ArtArchive
title: Art Archive Type
title: Art Archive
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -12,13 +18,84 @@ imports:
classes:
ArtArchive:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
class_uri: hc:ArtArchive
description: >-
Specialized archive preserving documentation related to art, artists,
art movements, galleries, and the art market for research and
provenance purposes.
alt_descriptions:
nl: >-
Gespecialiseerd archief dat documentatie bewaart met betrekking tot
kunst, kunstenaars, kunststromingen, galerijen en de kunstmarkt voor
onderzoek en herkomstonderzoek.
de: >-
Spezialisiertes Archiv, das Dokumentation zu Kunst, Kuenstlern,
Kunststroemungen, Galerien und dem Kunstmarkt fuer Forschungs- und
Provenienzzwecke bewahrt.
fr: >-
Archives specialisees preservant la documentation relative a l'art,
aux artistes, aux mouvements artistiques, aux galeries et au marche
de l'art a des fins de recherche et de provenance.
es: >-
Archivo especializado que preserva documentacion relacionada con arte,
artistas, movimientos artisticos, galerias y el mercado del arte para
fines de investigacion y procedencia.
ar: >-
أرشيف متخصص يحفظ الوثائق المتعلقة بالفن والفنانين والحركات الفنية
والمعارض وسوق الفن لأغراض البحث وتحديد المنشأ.
id: >-
Arsip khusus yang melestarikan dokumentasi terkait seni, seniman,
gerakan seni, galeri, dan pasar seni untuk tujuan penelitian dan
provenans.
zh: >-
专门保存与艺术、艺术家、艺术运动、画廊和艺术市场相关文件的档案,
用于研究和来源研究目的。
exact_mappings:
- wd:Q27032254
broad_mappings:
- skos:Concept
- schema:ArchiveOrganization
close_mappings:
- rico:CorporateBody
structured_aliases:
- literal_form: kunstarchief
in_language: nl
- literal_form: Kunstarchiv
in_language: de
- literal_form: archives d'art
in_language: fr
- literal_form: archivo de arte
in_language: es
- literal_form: أرشيف الفن
in_language: ar
- literal_form: arsip seni
in_language: id
- literal_form: 艺术档案
in_language: zh
examples:
- value:
has_type: ArchiveOrganizationType
hold_record_set:
- ArtistPapersCollection
- GalleryRecordsFonds
description: Art archive with multiple collection types
keywords:
- art
- artists
- galleries
- provenance
- art history
- documentation
slots:
- hold_record_set
description: "Specialized archive preserving documentation related to art, artists,\nart movements, galleries, and the art market.\n\n**Wikidata**: Q27032254\n\n**Scope**:\nArt archives (Kunstarchive) preserve:\n- Artist papers and correspondence\n- Gallery and dealer records\n- Exhibition documentation (catalogs, invitations, reviews)\n- Art criticism and publications\n- Photographs of artworks and installations\n- Auction house records\n- Art movement manifestos and ephemera\n- Studio and workshop documentation\n\n**Collection Types**:\n- Personal papers of artists\n- Institutional records of art organizations\n- Documentation of art historical events\n- Provenance research materials\n- Conservation and restoration records\n\n**Related Types**:\n- ArchitecturalArchive (Q121409581) - Architectural documentation\n- PerformingArtsArchive (Q27030945) - Performance-based arts\n- PhotoArchive (Q27032363) - Photographic collections\n\n**Notable Examples**:\n- Archives of American Art (Smithsonian)\n\
- Getty Research Institute Special Collections\n- Tate Archive (London)\n- Archiv der Akademie der K\xFCnste (Berlin)\n"
slot_usage: {}
- hold_record_set
comments:
- Preserves artist papers, gallery records, exhibition documentation
- Supports provenance research and art historical scholarship
- Often affiliated with museums or research institutions
see_also:
- ArchitecturalArchive
- PhotoArchive
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.45"
specificity_rationale: Specific archive type for art documentation
custodian_types: "['ArtArchive']"

View file

@ -1,8 +1,12 @@
id: https://nde.nl/ontology/hc/class/ArtArchiveRecordSetType
name: ArtArchiveRecordSetType
title: ArtArchive Record Set Type
title: Art Archive Record Set Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
rico: https://www.ica.org/standards/RiC/ontology#
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_scope
@ -10,21 +14,83 @@ imports:
- ../slots/has_type
classes:
ArtArchiveRecordSetType:
description: 'A rico:RecordSetType for classifying collections held by ArtArchive custodians.
'
class_uri: hc:ArtArchiveRecordSetType
description: >-
Classification category for record sets containing art-related
documentation, including artist papers, gallery records, and exhibition
archives within art archives.
alt_descriptions:
nl: >-
Classificatiecategorie voor recordsets met kunstgerelateerde
documentatie, waaronder kunstenaarsarchieven, galerijrecords en
tentoonstellingsarchieven binnen kunstarchieven.
de: >-
Klassifizierungskategorie fuer Datensatzgruppen mit kunstbezogener
Dokumentation, einschliesslich Kuenstlernachlaessen, Galeriedokumenten
und Ausstellungsarchiven in Kunstarchiven.
fr: >-
Categorie de classification pour les ensembles d'enregistrements
contenant de la documentation artistique, y compris les papiers
d'artistes, les documents de galerie et les archives d'exposition.
es: >-
Categoria de clasificacion para conjuntos de registros que contienen
documentacion relacionada con el arte, incluidos papeles de artistas,
registros de galerias y archivos de exposiciones.
ar: >-
فئة تصنيف لمجموعات السجلات التي تحتوي على وثائق متعلقة بالفن، بما
في ذلك أوراق الفنانين وسجلات المعارض وأرشيفات المعارض.
id: >-
Kategori klasifikasi untuk kumpulan rekaman yang berisi dokumentasi
terkait seni, termasuk kertas seniman, catatan galeri, dan arsip
pameran dalam arsip seni.
zh: >-
艺术档案中包含艺术相关文件的记录集分类类别,包括艺术家文件、画廊记录
和展览档案。
is_a: CollectionType
class_uri: rico:RecordSetType
broad_mappings:
- rico:RecordSetType
- skos:Concept
structured_aliases:
- literal_form: kunstarchief-recordsettype
in_language: nl
- literal_form: Kunstarchiv-Bestandsart
in_language: de
- literal_form: type de fonds d'archives d'art
in_language: fr
- literal_form: tipo de fondo de archivo de arte
in_language: es
- literal_form: نوع مجموعة سجلات أرشيف الفن
in_language: ar
- literal_form: tipe kumpulan rekaman arsip seni
in_language: id
- literal_form: 艺术档案记录集类型
in_language: zh
examples:
- value:
has_type: ArchiveOrganizationType
has_score: 1.0
description: Art archive collection type
keywords:
- art documentation
- record set type
- artist papers
- gallery records
- classification
slots:
- has_type
- has_score
- has_scope
see_also:
- ArtArchive
- rico:RecordSetType
- has_type
- has_score
- has_scope
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
any_of:
- equals_string: "hc:ArchiveOrganizationType"
comments:
- Abstract classification for art archive collections
- See ArtArchiveRecordSetTypes.yaml for concrete subclasses
see_also:
- ArtArchive
- rico:RecordSetType
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.35"
specificity_rationale: Specific record set type for art documentation
custodian_types: "['ArtArchive']"

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/ArtArchiveRecordSetTypes
name: ArtArchiveRecordSetTypes
title: ArtArchive Record Set Type Subclasses
title: Art Archive Record Set Types
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -20,98 +20,224 @@ imports:
classes:
ArtistPapersCollection:
is_a: ArtArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Artist personal papers and sketches.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the collection \norganizational principle as defined by rico-rst:Collection.\n"
class_uri: hc:ArtistPapersCollection
description: >-
Collection of personal papers, sketches, correspondence, and studio
documentation from individual artists.
alt_descriptions:
nl: >-
Collectie van persoonlijke archieven, schetsen, correspondentie en
atelierdocumentatie van individuele kunstenaars.
de: >-
Sammlung von persoenlichen Papieren, Skizzen, Korrespondenz und
Atelierdokumentation einzelner Kuenstler.
fr: >-
Collection de papiers personnels, croquis, correspondance et
documentation d'atelier d'artistes individuels.
es: >-
Coleccion de papeles personales, bocetos, correspondencia y
documentacion de estudio de artistas individuales.
ar: >-
مجموعة من الأوراق الشخصية والرسومات والمراسلات ووثائق الاستوديو
لفنانين فرديين.
id: >-
Koleksi kertas pribadi, sketsa, korespondensi, dan dokumentasi studio
dari seniman individu.
zh: >-
艺术家个人论文、素描、通信和工作室文档的收藏。
broad_mappings:
- rico:RecordSetType
- rico:RecordSetType
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
see_also:
- ArtArchiveRecordSetType
- rico:RecordSetType
- rico-rst:Collection
structured_aliases:
- literal_form: kunstenaarsarchiefcollectie
in_language: nl
- literal_form: Kuenstlernachlass-Sammlung
in_language: de
- literal_form: collection de papiers d'artiste
in_language: fr
- literal_form: coleccion de papeles de artista
in_language: es
- literal_form: مجموعة أوراق الفنان
in_language: ar
- literal_form: koleksi kertas seniman
in_language: id
- literal_form: 艺术家论文收藏
in_language: zh
keywords:
- artist papers
- personal archive
- sketches
- correspondence
slots:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_type
- has_score
- has_custodian
- record_holder_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: ArtistPapersCollection
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "ArtistPapersCollection"
has_custodian:
equals_string: ArtArchive
equals_string: "ArtArchive"
record_holder_note:
equals_string: This RecordSetType is typically held by ArtArchive custodians.
Inverse of rico:isOrWasHolderOf.
equals_string: "This RecordSetType is typically held by ArtArchive custodians"
comments:
- Follows rico-rst:Collection organizational principle
- Contains personal papers and creative documentation
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.5"
specificity_rationale: Specific collection type for artist papers
custodian_types: "['ArtArchive']"
GalleryRecordsFonds:
is_a: ArtArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Art gallery records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the fonds \norganizational\
\ principle as defined by rico-rst:Fonds.\n"
class_uri: hc:GalleryRecordsFonds
description: >-
Fonds of business records from commercial art galleries, including
sales records, client files, exhibition histories, and inventory.
alt_descriptions:
nl: >-
Fonds van bedrijfsarchieven van commerciële kunstgalerijen, inclusief
verkooprecords, klantenbestanden, tentoonstellingsgeschiedenissen en
inventaris.
de: >-
Fonds von Geschaeftsunterlagen kommerzieller Kunstgalerien, einschliesslich
Verkaufsunterlagen, Kundendateien, Ausstellungsgeschichten und Inventar.
fr: >-
Fonds de documents commerciaux de galeries d'art commerciales, comprenant
les registres de ventes, les dossiers clients, les historiques d'expositions
et l'inventaire.
es: >-
Fondo de registros comerciales de galerias de arte comerciales, incluyendo
registros de ventas, archivos de clientes, historiales de exposiciones
e inventario.
ar: >-
مجموعة سجلات الأعمال من المعارض الفنية التجارية، بما في ذلك سجلات
المبيعات وملفات العملاء وتاريخ المعارض والمخزون.
id: >-
Fonds catatan bisnis dari galeri seni komersial, termasuk catatan penjualan,
file klien, riwayat pameran, dan inventaris.
zh: >-
商业艺术画廊的商业记录档案,包括销售记录、客户档案、展览历史和库存。
broad_mappings:
- rico:RecordSetType
- rico:RecordSetType
related_mappings:
- rico-rst:Fonds
close_mappings:
- skos:Concept
see_also:
- ArtArchiveRecordSetType
- rico:RecordSetType
- rico-rst:Fonds
structured_aliases:
- literal_form: galerijrecordsfonds
in_language: nl
- literal_form: Galeriedokumente-Fonds
in_language: de
- literal_form: fonds de documents de galerie
in_language: fr
- literal_form: fondo de documentos de galeria
in_language: es
- literal_form: صندوق سجلات المعرض
in_language: ar
- literal_form: fonds catatan galeri
in_language: id
- literal_form: 画廊记录档案
in_language: zh
keywords:
- gallery records
- sales records
- commercial gallery
- fonds
slots:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_type
- has_score
- has_custodian
- record_holder_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: GalleryRecordsFonds
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "GalleryRecordsFonds"
has_custodian:
equals_string: ArtArchive
equals_string: "ArtArchive"
record_holder_note:
equals_string: This RecordSetType is typically held by ArtArchive custodians.
Inverse of rico:isOrWasHolderOf.
equals_string: "This RecordSetType is typically held by ArtArchive custodians"
comments:
- Follows rico-rst:Fonds organizational principle
- Contains business records from art dealers
annotations:
specificity_score: "0.5"
specificity_rationale: Specific fonds type for gallery records
custodian_types: "['ArtArchive']"
ExhibitionDocumentationCollection:
is_a: ArtArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Exhibition records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
class_uri: hc:ExhibitionDocumentationCollection
description: >-
Collection of exhibition-related materials including catalogs,
installation photographs, press coverage, and curatorial documentation.
alt_descriptions:
nl: >-
Collectie van tentoonstellingsgerelateerde materialen, waaronder
catalogi, installatiefoto's, persverslaggeving en curatiele documentatie.
de: >-
Sammlung von ausstellungsbezogenen Materialien, darunter Kataloge,
Installationsfotos, Presseberichte und kuratorische Dokumentation.
fr: >-
Collection de materiaux lies aux expositions, notamment des catalogues,
des photos d'installation, une couverture de presse et une documentation
curatoriale.
es: >-
Coleccion de materiales relacionados con exposiciones, incluyendo
catalogos, fotografias de instalacion, cobertura de prensa y
documentacion curatorial.
ar: >-
مجموعة من المواد المتعلقة بالمعارض، بما في ذلك الكتالوجات وصور
التركيب والتغطية الصحفية والوثائق الفنية.
id: >-
Koleksi materi terkait pameran, termasuk katalog, foto instalasi,
liputan pers, dan dokumentasi kuratorial.
zh: >-
展览相关材料的收藏,包括目录、安装照片、媒体报道和策展文档。
broad_mappings:
- rico:RecordSetType
- rico:RecordSetType
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
see_also:
- ArtArchiveRecordSetType
- rico:RecordSetType
- rico-rst:Collection
structured_aliases:
- literal_form: tentoonstellingsdocumentatiecollectie
in_language: nl
- literal_form: Ausstellungsdokumentation-Sammlung
in_language: de
- literal_form: collection de documentation d'exposition
in_language: fr
- literal_form: coleccion de documentacion de exposicion
in_language: es
- literal_form: مجموعة توثيق المعارض
in_language: ar
- literal_form: koleksi dokumentasi pameran
in_language: id
- literal_form: 展览文档收藏
in_language: zh
keywords:
- exhibition documentation
- catalogs
- installation photos
- curatorial
slots:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_type
- has_score
- has_custodian
- record_holder_note
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: ExhibitionDocumentationCollection
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "ExhibitionDocumentationCollection"
has_custodian:
equals_string: ArtArchive
equals_string: "ArtArchive"
record_holder_note:
equals_string: This RecordSetType is typically held by ArtArchive custodians.
Inverse of rico:isOrWasHolderOf.
equals_string: "This RecordSetType is typically held by ArtArchive custodians"
comments:
- Follows rico-rst:Collection organizational principle
- Contains exhibition history and documentation
annotations:
specificity_score: "0.5"
specificity_rationale: Specific collection type for exhibition documentation
custodian_types: "['ArtArchive']"

View file

@ -1,94 +1,100 @@
id: https://nde.nl/ontology/hc/class/ArtDealer
name: art_dealer_class
title: Art Dealer Class
title: Art Dealer
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
foaf: http://xmlns.com/foaf/0.1/
crm: http://www.cidoc-crm.org/cidoc-crm/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_name
default_prefix: hc
classes:
ArtDealer:
class_uri: crm:E39_Actor
description: |
An art dealer or gallery involved in the sale or transfer of art objects.
**MIGRATION NOTE** (2026-01-24):
Created per slot_fixes.yaml migration from `dealer_name` string
to structured ArtDealer class per Rule 53.
**Purpose**:
Provides structured representation for art dealers including:
- The dealer's name (via has_name)
- Future extensibility for dealer location, active dates, etc.
**Ontological Alignment**:
- **Primary** (`class_uri`): `crm:E39_Actor` - CIDOC-CRM Actor class
- **Close**: `foaf:Agent`, `schema:Organization` - Agent/organization classes
**Use Cases**:
- Provenance events involving art sales (DEALER_SALE type)
- Tracking art market participants in heritage provenance research
- Linking objects to dealers who handled them
**Pattern**:
```yaml
associated_with:
- has_name:
has_label: "Duveen Brothers"
```
slots:
- has_name
slot_usage:
has_name:
# range: string # Name
inlined: false # Fixed invalid inline for primitive type
required: false
examples:
- value:
has_label: "Duveen Brothers"
exact_mappings:
class_uri: hc:ArtDealer
description: >-
Commercial entity or individual involved in the sale, purchase, or
brokerage of artworks, documented for provenance research and
collection history tracking.
alt_descriptions:
nl: >-
Commerciele entiteit of individu betrokken bij de verkoop, aankoop of
bemiddeling van kunstwerken, gedocumenteerd voor herkomstonderzoek en
traceren van collectiegeschiedenis.
de: >-
Kommerzielle Einheit oder Person, die am Verkauf, Kauf oder der
Vermittlung von Kunstwerken beteiligt ist, dokumentiert fuer
Provenienzforschung und Sammlungsgeschichte.
fr: >-
Entite commerciale ou personne impliquee dans la vente, l'achat ou le
courtage d'oeuvres d'art, documentee pour la recherche de provenance
et le suivi de l'historique des collections.
es: >-
Entidad comercial o individuo involucrado en la venta, compra o
corretaje de obras de arte, documentado para investigacion de
procedencia y seguimiento del historial de coleccion.
ar: >-
كيان تجاري أو فرد مشارك في بيع أو شراء أو وساطة الأعمال الفنية،
موثق لبحث المنشأ وتتبع تاريخ المجموعة.
id: >-
Entitas komersial atau individu yang terlibat dalam penjualan,
pembelian, atau pialangan karya seni, didokumentasikan untuk penelitian
provenans dan pelacakan riwayat koleksi.
zh: >-
参与艺术品销售、购买或经纪的商业实体或个人,为来源研究和收藏历史跟踪
而记录。
broad_mappings:
- crm:E39_Actor
- schema:Organization
close_mappings:
- foaf:Agent
- schema:Organization
annotations:
custodian_types: '["M", "G"]'
custodian_types_rationale: Art dealers primarily relevant to museums and galleries with provenance research.
custodian_types_primary: M
specificity_score: 0.75
specificity_rationale: >-
Highly specific to art market provenance research - primarily used in
museum and gallery contexts for tracking object ownership history.
template_specificity: '{"collection_discovery": 0.8, "museum_search": 0.85, "general_heritage": 0.6}'
# migration_info: (Flattened)
migration_source_slot: dealer_name
migration_date: "2026-01-24"
migration_rule: "Rule 53"
comments:
- "Structured art dealer representation for provenance events"
- "Replaces simple string-valued dealer_name slot"
- "Extensible for dealer location, active dates, gallery affiliation"
- "Created 2026-01-24 from dealer_name migration (Rule 53)"
structured_aliases:
- literal_form: kunsthandelaar
in_language: nl
- literal_form: Kunsthändler
in_language: de
- literal_form: marchand d'art
in_language: fr
- literal_form: comerciante de arte
in_language: es
- literal_form: تاجر أعمال فنية
in_language: ar
- literal_form: pedagang seni
in_language: id
- literal_form: 艺术品经销商
in_language: zh
examples:
- value:
has_name:
has_label: "Duveen Brothers"
description: Notable art dealer firm
- value:
has_name:
has_label: "Paul Cassirer"
description: German art dealer
- value:
has_name:
has_label: "Jacques Goudstikker"
has_label: "Jacques Goudstikker"
description: Dutch art dealer
keywords:
- dealer
- gallery
- art market
- provenance
- sales
slots:
- has_name
slot_usage:
has_name:
inlined: false
required: false
comments:
- Created per Rule 53 migration from dealer_name string slot
- Used for provenance events involving art sales
- Extensible for dealer location, active dates, gallery affiliation
annotations:
specificity_score: "0.75"
specificity_rationale: Highly specific to art market provenance research
custodian_types: "['Museum', 'Gallery']"

View file

@ -5,6 +5,7 @@ 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#
imports:
- linkml:types
- ../metadata
@ -14,48 +15,89 @@ classes:
ArtSaleService:
is_a: Service
class_uri: hc:ArtSaleService
description: 'Service for selling artworks, typically offered by commercial galleries.
**PURPOSE**:
Models art sales activities including commission structures,
market type (primary/secondary), and artist representation.
**DESIGN RATIONALE**:
Created per slot_fixes.yaml migration from `commission_rate` string
to structured `has_service` + `ArtSaleService` with nested
commission details.
**USE CASES**:
- Commercial gallery primary market sales (representing artists)
- Secondary market resales (consignment)
- Auction house sales (different commission model)
**MARKET TYPES**:
- **Primary market**: First sale of artwork by artist (40-50% commission)
- **Secondary market**: Resale of previously sold works (10-20% commission)
'
description: >-
Service for selling artworks, typically offered by commercial galleries.
Models art sales activities including commission structures, market type
(primary/secondary), and artist representation.
alt_descriptions:
nl:
text: >-
Dienst voor de verkoop van kunstwerken, doorgaans aangeboden door commerciële galerieën.
Modelleert kunstverkoopactiviteiten inclusief commissiestructuren, markttype
(primair/secundair) en kunstenaarsvertegenwoordiging.
de:
text: >-
Dienst für den Verkauf von Kunstwerken, typischerweise von kommerziellen Galerien angeboten.
Modelliert Kunstverkaufsaktivitäten einschließlich Provisionsstrukturen, Markttyp
(Primär-/Sekundärmarkt) und Künstlervertretung.
fr:
text: >-
Service de vente d'œuvres d'art, généralement proposé par les galeries commerciales.
Modélise les activités de vente d'art, y compris les structures de commission,
le type de marché (primaire/secondaire) et la représentation des artistes.
es:
text: >-
Servicio de venta de obras de arte, típicamente ofrecido por galerías comerciales.
Modela actividades de venta de arte incluyendo estructuras de comisión,
tipo de mercado (primario/secundario) y representación de artistas.
ar:
text: >-
خدمة بيع الأعمال الفنية، تقدمها عادة المعارض التجارية.
تصمم أنشطة بيع الفن بما في ذلك هياكل العمولة ونوع السوق
(أساسي/ثانوي) وتمثيل الفنانين.
id:
text: >-
Layanan untuk menjual karya seni, biasanya ditawarkan oleh galeri komersial.
Memodelkan aktivitas penjualan seni termasuk struktur komisi, jenis pasar
(primer/sekunder), dan perwakilan seniman.
zh:
text: >-
销售艺术品的服务,通常由商业画廊提供。
对艺术品销售活动进行建模,包括佣金结构、市场类型(一级/二级)和艺术家代理。
examples:
- value:
sales_activity: true
takes_or_took_comission:
has_percentage: 50
description: Primary market sale with 50% commission
- value:
sales_activity: true
takes_or_took_comission:
has_percentage: 15
description: Secondary market consignment sale with 15% commission
close_mappings:
- schema:SellAction
- schema:Service
structured_aliases:
- literal_form: kunstverkoopdienst
in_language: nl
- literal_form: Kunstverkaufsdienst
in_language: de
- literal_form: service de vente d'art
in_language: fr
- literal_form: servicio de venta de arte
in_language: es
- literal_form: خدمة بيع الفن
in_language: ar
- literal_form: layanan jual beli seni
in_language: id
- literal_form: 艺术品销售服务
in_language: zh
keywords:
- art sales
- gallery sales
- commission
- primary market
- secondary market
- art commerce
slots:
- takes_or_took_comission
- has_activity
@ -66,25 +108,21 @@ classes:
required: false
examples:
- value:
has_percentage: null
examples:
- value:
sales_activity: true
takes_or_took_comission:
has_percentage: null
- value:
sales_activity: true
takes_or_took_comission:
has_percentage: null
has_percentage: 50
- value:
has_percentage: 15
comments:
- Created 2026-01-22 from commission_rate migration (Rule 53)
- Extends Service class for art sales context
- Supports primary and secondary market distinctions
- Primary market: first sale by artist (40-50% commission)
- Secondary market: resale of previously sold works (10-20% commission)
see_also:
- https://schema.org/SellAction
- CommissionRate
annotations:
custodian_types: '["G", "C"]'
custodian_types_rationale: Primarily for galleries (G) and commercial organizations
(C).
specificity_score: '0.75'
specificity_rationale: Specific to commercial art sales context.
custodian_types: "['G', 'C']"
custodian_types_rationale: "Primarily for galleries (G) and commercial organizations (C)."
specificity_score: "0.75"
specificity_rationale: "Specific to commercial art sales context."
market_types: "primary (40-50% commission), secondary (10-20% commission)"

View file

@ -1,14 +1,89 @@
id: https://nde.nl/ontology/hc/class/Article
name: Article
title: Article
description: A legal or statutory article.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
rico: https://www.ica.org/standards/RiC/ontology#
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_text
- ../slots/has_label
- ../slots/has_number
classes:
Article:
class_uri: rico:Rule
annotations:
custodian_types: '["*"]'
class_uri: hc:Article
description: >-
Legal or statutory provision within a document, regulation, or agreement,
representing an individual rule, clause, or section.
alt_descriptions:
nl: >-
Wettelijke of statutaire bepaling binnen een document, verordening of
overeenkomst, die een individuele regel, clausule of sectie vertegenwoordigt.
de: >-
Rechtliche oder satzungsgemaesse Bestimmung innerhalb eines Dokuments,
einer Verordnung oder Vereinbarung, die eine einzelne Regel, Klausel
oder einen Abschnitt darstellt.
fr: >-
Disposition legale ou statutaire dans un document, un reglement ou un
accord, representant une regle, une clause ou une section individuelle.
es: >-
Disposicion legal o estatutaria dentro de un documento, reglamento o
acuerdo, que representa una regla, clausula o seccion individual.
ar: >-
حكم قانوني أو نظامي ضمن وثيقة أو لائحة أو اتفاق، يمثل قاعدة أو بندًا
أو قسمًا فرديًا.
id: >-
Ketentuan hukum atau statuter dalam dokumen, peraturan, atau perjanjian,
yang mewakili aturan, klausul, atau bagian individu.
zh: >-
文件、法规或协议中的法律或法定条款,代表单个规则、条款或章节。
exact_mappings:
- rico:Rule
broad_mappings:
- schema:Article
structured_aliases:
- literal_form: artikel
in_language: nl
- literal_form: Artikel
in_language: de
- literal_form: article
in_language: fr
- literal_form: articulo
in_language: es
- literal_form: مادة
in_language: ar
- literal_form: pasal
in_language: id
- literal_form: 条款
in_language: zh
examples:
- value:
has_number: "5"
has_label: "Retention Period"
has_text: "Records shall be retained for a minimum of 30 years."
description: Article defining retention period
- value:
has_number: "12"
has_label: "Access Rights"
description: Article on access rights
keywords:
- legal provision
- statute
- clause
- regulation
- rule
slots:
- has_text
- has_label
- has_number
comments:
- Represents individual provisions within legal documents
- Used in policies, agreements, and statutory documents
annotations:
specificity_score: "0.3"
specificity_rationale: Specific legal document component
custodian_types: "['*']"

View file

@ -1,6 +1,17 @@
id: https://nde.nl/ontology/hc/class/ArticlesOfAssociation
name: articles_of_association_class
title: ArticlesOfAssociation Class
title: Articles of Association
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
crm: http://www.cidoc-crm.org/cidoc-crm/
dcterms: http://purl.org/dc/terms/
rico: https://www.ica.org/standards/RiC/ontology#
prov: http://www.w3.org/ns/prov#
schema: http://schema.org/
rov: http://www.w3.org/ns/regorg#
lkif-legal: http://www.estrellaproject.org/lkif-core/legal-action.owl#
default_prefix: hc
imports:
- linkml:types
- ../enums/RecordsLifecycleStageEnum
@ -30,249 +41,143 @@ imports:
- ../slots/require
- ../slots/supersede
- ../slots/temporal_extent
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
crm: http://www.cidoc-crm.org/cidoc-crm/
dcterms: http://purl.org/dc/terms/
rico: https://www.ica.org/standards/RiC/ontology#
prov: http://www.w3.org/ns/prov#
time: http://www.w3.org/2006/time#
schema: http://schema.org/
rov: http://www.w3.org/ns/regorg#
lkif-legal: http://www.estrellaproject.org/lkif-core/legal-action.owl#
folio: http://purl.org/folio/
classes:
ArticlesOfAssociation:
is_a: ReconstructedEntity
class_uri: rico:Record
description: "Founding legal document (articles of association, statuten, akte van oprichting)\nthat establishes a heritage custodian organization.\n\n**WHAT ARE ARTICLES OF ASSOCIATION?**\n\nArticles of Association (also known as statutes, charter, bylaws, or deed of\nincorporation depending on jurisdiction) are the foundational legal document\nthat establishes an organization's:\n\n- Legal name and registered office\n- Purpose/objects (doelstelling)\n- Governance structure (board composition, voting)\n- Membership rules (for associations)\n- Capital structure (for companies)\n- Amendment procedures\n- Dissolution procedures\n\n**TERMINOLOGY BY JURISDICTION**:\n\n| Country | Term | Notes |\n|---------|------|-------|\n| Netherlands | Statuten, Akte van oprichting | Notarial deed required |\n| Germany | Satzung, Gesellschaftsvertrag | Varies by legal form |\n| UK | Articles of Association | Memorandum + Articles |\n| USA | Articles of Incorporation, Bylaws | State-specific |\n| France\
\ | Statuts | Association loi 1901 |\n\n**CRITICAL TEMPORAL PARADOX**:\n\nFor legal forms that REQUIRE articles at registration (e.g., Dutch stichting, BV),\nthe articles EXIST BEFORE the organization officially exists:\n\n```\nTimeline:\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\nT\u2081: Notary drafts articles \u2190 Articles exist, organization does NOT\nT\u2082: Notary executes deed \u2190 Articles finalized, organization still doesn't exist\nT\u2083: Registration with KvK \u2190 Organization comes into legal existence\nT\u2084: First day of operations \u2190 Organization now has\
\ CustodianAdministration\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n```\n\n**IMPLICATION**: Articles that predate the organization can NEVER have been\npart of CustodianAdministration. They enter the records lifecycle at ACTIVE\nstage only AFTER the organization exists (T\u2083 onwards).\n\n**Pre-existence stage**: Use RecordsLifecycleStageEnum.PRE_EXISTENCE for\narticles during T\u2081-T\u2082 period.\n\n**JURISDICTION DETERMINES REQUIREMENT**:\n\nNot all legal forms require articles at registration:\n\n| Legal Form | Articles Required at Registration? |\n|------------|-----------------------------------|\n| Dutch Stichting\
\ (foundation) | YES - notarial deed mandatory |\n| Dutch BV (private company) | YES - notarial deed mandatory |\n| Dutch Vereniging (association) | Depends - formal vs informal |\n| Dutch VOF (partnership) | NO - partnership agreement sufficient |\n| Dutch Maatschap (partnership) | NO - partnership agreement sufficient |\n| Dutch Eenmanszaak (sole prop) | NO - not applicable |\n| UK CIO (charity) | YES - constitution required |\n| UK Company Limited by Guarantee | YES - articles required |\n| US 501(c)(3) | YES - articles of incorporation |\n\n**RECORDS LIFECYCLE INTEGRATION**:\n\nArticles of Association follow a modified three-tier lifecycle:\n\n```\n\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\
\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 PRE_EXISTENCE (Before organization exists) \u2502\n\u2502 - Drafted and executed by notary \u2502\n\u2502 - Held by notary, founders, or registration authority \u2502\n\u2502 - Organization does NOT exist yet \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2193\n (Organization registered,\n comes into legal existence)\n \
\ \u2193\n\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 ACTIVE (CustodianAdministration) \u2502\n\u2502 - Current version of articles \u2502\n\u2502 - Referenced for governance decisions \u2502\n\u2502 - Required for regulatory filings \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\
\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2193\n (Articles amended,\n superseded version)\n \u2193\n\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 INACTIVE (CustodianArchive) \u2502\n\u2502 - Superseded versions \u2502\n\u2502 - Retained\
\ for legal/historical reference \u2502\n\u2502 - Amendment history \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2193\n (Historical significance,\n founding documentation)\n \u2193\n\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\
\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 HERITAGE (CustodianCollection) \u2502\n\u2502 - Original founding articles (notarial deed) \u2502\n\u2502 - Historical amendments of significance \u2502\n\u2502 - Part of institutional heritage collection \u2502\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n```\n\n- **RiC-O**: rico:Record for archival record concept\n\
- **PROV-O**: prov:Entity with generation provenance\n- **LKIF-Core**: lkif-legal:Legal_Document for legal document classification\n- **Schema.org**: schema:LegislationObject conceptually similar\n"
class_uri: hc:ArticlesOfAssociation
description: >-
Founding legal document establishing a heritage custodian organization,
defining governance structure, purpose, and operational rules, with
version tracking for amendments over time.
alt_descriptions:
nl: >-
Oprichtingsdocument dat een erfgoedinstelling vestigt, de
bestuursstructuur, doelstelling en operationele regels definieert,
met versietracking voor wijzigingen in de loop der tijd.
de: >-
Gruendungsdokument, das eine Heritage-Institution etabliert, die
Verwaltungsstruktur, den Zweck und die Betriebsregeln definiert,
mit Versionsverfolgung fuer Aenderungen im Laufe der Zeit.
fr: >-
Document juridique fondateur etablissant une institution patrimoniale,
definissant la structure de gouvernance, l'objet et les regles
operationnelles, avec suivi des versions pour les modifications.
es: >-
Documento legal fundacional que establece una institucion patrimonial,
definiendo la estructura de gobernanza, proposito y reglas operativas,
con seguimiento de versiones para enmiendas a lo largo del tiempo.
ar: >-
وثيقة قانونية تأسيسية تنشئ مؤسسة تراثية، وتحدد هيكل الحوكمة والغرض
والقواعد التشغيلية، مع تتبع الإصدارات للتعديلات بمرور الوقت.
id: >-
Dokumen hukum pendiri yang mendirikan lembaga warisan, mendefinisikan
struktur tata kelola, tujuan, dan aturan operasional, dengan pelacakan
versi untuk amandemen dari waktu ke waktu.
exact_mappings:
- rico:Record
- rico:Record
close_mappings:
- crm:E31_Document
- schema:LegislationObject
- lkif-legal:Legal_Document
- crm:E31_Document
- schema:LegislationObject
- lkif-legal:Legal_Document
related_mappings:
- prov:Entity
- rov:orgType
- prov:Entity
- rov:orgType
structured_aliases:
- literal_form: statuten
in_language: nl
- literal_form: Satzung
in_language: de
- literal_form: statuts
in_language: fr
- literal_form: estatutos
in_language: es
- literal_form: النظام الأساسي
in_language: ar
- literal_form: anggaran dasar
in_language: id
- literal_form: 章程
in_language: zh
examples:
- value:
has_title:
has_label: "Statuten Stichting Rijksmuseum"
has_type:
has_type: NotarialDeed
signed_at:
has_timestamp: "1885-06-28"
effective_at: "1885-07-01"
current: false
description: Original founding articles of Rijksmuseum
keywords:
- founding document
- statutes
- bylaws
- incorporation
- governance
- legal
slots:
- amended_through
- archived_in
- has_status
- has_format
- has_url
- included_in
- has_description
- has_title
- has_type
- effective_at
- signed_at
- current
- in_jurisdiction
- in_language
- has_legal_form
- identified_by
- signed_by
- signed_at
- refer_to
- refer_to
- has_clause
- require
- supersede
- has_score
- temporal_extent
- has_version
- derive_from
- generated_by
- amended_through
- archived_in
- has_status
- has_format
- has_url
- included_in
- has_description
- has_title
- has_type
- effective_at
- signed_at
- current
- in_jurisdiction
- in_language
- has_legal_form
- identified_by
- signed_by
- refer_to
- has_clause
- require
- supersede
- has_score
- temporal_extent
- has_version
- derive_from
- generated_by
slot_usage:
has_title:
# range: string
inlined: false # Fixed invalid inline for primitive type
required: true
examples:
- value:
has_label: Statuten Stichting Rijksmuseum
has_description:
# range: string
inlined: false # Fixed invalid inline for primitive type
required: false
examples:
- value:
description_text: Original founding articles of the Rijksmuseum foundation
has_type:
range: DocumentType
inlined: true
required: true
examples:
- value:
has_label: Notarial Deed
has_type: NotarialDeed
signed_at:
range: Timestamp
inlined: true
required: true
examples:
- value:
has_timestamp: '2024-03-15'
effective_at:
range: date
required: false
examples:
- value: '2024-03-18'
signed_by:
# range: string
required: false
examples:
- value: mr. J.A. van der Berg
signed_at:
# range: string
required: false
examples:
- value: Amsterdam
identified_by:
# range: string
required: false
examples:
- value: 2024/0315/001
has_version:
# range: string
required: false
examples:
- value: '1'
- value: '3'
current:
range: boolean
required: true
has_clause:
# range: string
required: false
examples:
- value: De stichting heeft haar zetel in de gemeente Amsterdam.
- value: '2015-11-12: Amendment to restructure board composition'
in_language:
# range: string
required: false
examples:
- value: nl
- value: de
- value: PRE_EXISTENCE
archived_in:
range: CustodianArchive
required: false
included_in:
range: CustodianCollection
required: false
examples:
- value: https://nde.nl/ontology/hc/collection/rm/institutional-archive
require:
range: boolean
required: false
examples:
- value: true
- value: false
refer_to:
range: CustodianLegalStatus
required: true
refer_to:
range: Custodian
required: true
has_legal_form:
range: LegalForm
required: false
in_jurisdiction:
# range: string
required: false
derive_from:
range: CustodianObservation
multivalued: true
required: false
generated_by:
range: ReconstructionActivity
required: false
temporal_extent:
range: TimeSpan
inlined: true
required: false
examples:
- value:
begin_of_the_begin: '1885-07-01'
end_of_the_end: '2015-11-11'
comments:
- Represents founding legal documents (statuten, articles of incorporation)
- 'Handles PRE_EXISTENCE paradox: articles exist before organization exists'
- Links to CustodianLegalStatus via rico:documents relationship
- NOT linked to CustodianAdministration during PRE_EXISTENCE stage
- Version chain via supersedes/superseded_by relationships
- RiC-O rico:Record as primary ontology class
- Jurisdiction and LegalForm determine registration requirements
- Represents founding legal documents (statuten, articles of incorporation)
- Handles PRE_EXISTENCE paradox - articles exist before organization exists
- Links to CustodianLegalStatus via rico:documents relationship
- Version chain via supersedes/superseded_by relationships
- Jurisdiction and LegalForm determine registration requirements
see_also:
- https://www.ica.org/standards/RiC/ontology#Record
- https://nde.nl/ontology/hc/class/CustodianLegalStatus
- https://nde.nl/ontology/hc/class/LegalForm
- https://nde.nl/ontology/hc/enum/RecordsLifecycleStageEnum
examples:
- value:
id: https://nde.nl/ontology/hc/articles/rm/v1
has_title:
has_label: Statuten Stichting Rijksmuseum
has_description:
description_text: Original founding articles of the Rijksmuseum foundation, establishing governance structure and museum operations.
has_type:
has_type: NotarialDeed
has_label: Notarial Deed
signed_at:
has_timestamp: '1885-06-28'
effective_at: '1885-07-01'
notary_name: mr. H.J. van den Berg
notary_office: Amsterdam
notarial_deed_number: 1885/328
has_version: '1'
is_current_version: false
superseded_by_articles: https://nde.nl/ontology/hc/articles/rm/v15
registered_office_clause: De stichting heeft haar zetel in de gemeente Amsterdam.
language: nl
articles_archival_stage: HERITAGE
included_in: https://nde.nl/ontology/hc/collection/rm/institutional-archive
requires_articles_at_registration: true
refers_to_legal_status: https://nde.nl/ontology/hc/legal-status/rm
refers_to_custodian: https://nde.nl/ontology/hc/nl-nh-ams-m-rm-q190804
has_legal_form:
in_jurisdiction:
jurisdiction_id: NL
jurisdiction_type: NATIONAL
- value:
identified_by: https://nde.nl/ontology/hc/articles/nha/v3
has_title:
has_label: Statuten Stichting Noord-Hollands Archief (gewijzigd 2015)
has_description:
description_text: Third version of articles, amended to include digital preservation mandate.
has_type:
has_type: NotarialDeed
has_label: Notarial Deed
signed_at:
has_timestamp: '2015-11-12'
effective_at: '2015-11-12'
notary_name: mr. A.M. de Vries
notary_office: Haarlem
has_version: '3'
is_current_version: true
supersede: https://nde.nl/ontology/hc/articles/nha/v2
language: nl
articles_archival_stage: ACTIVE
requires_articles_at_registration: true
refers_to_legal_status: https://nde.nl/ontology/hc/legal-status/nha
refers_to_custodian: https://nde.nl/ontology/hc/nl-nh-haa-a-nha
- rico:Record
- CustodianLegalStatus
- LegalForm
- RecordsLifecycleStageEnum
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.5"
specificity_rationale: Core legal document for institutional establishment
custodian_types: "['*']"

View file

@ -1,22 +1,97 @@
id: https://nde.nl/ontology/hc/class/Artist
name: Artist
title: Artist
description: An artist represented by a gallery or collection.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
crm: http://www.cidoc-crm.org/cidoc-crm/
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_name
classes:
Artist:
class_uri: schema:Person
description: Artist.
class_uri: hc:Artist
description: >-
Individual who creates visual, performing, or literary artworks,
documented in heritage collections for attribution, provenance,
and art historical research purposes.
alt_descriptions:
nl: >-
Individu dat visuele, uitvoerende of literaire kunstwerken creëert,
gedocumenteerd in erfgoedcollecties voor toeschrijving, herkomst
en kunsthistorisch onderzoek.
de: >-
Person, die visuelle, darstellende oder literarische Kunstwerke
schafft, dokumentiert in Heritage-Sammlungen fuer Attribution,
Provenienz und kunstgeschichtliche Forschung.
fr: >-
Personne qui cree des oeuvres d'art visuelles, performantielles ou
litteraires, documentee dans les collections patrimoniales pour
l'attribution, la provenance et la recherche en histoire de l'art.
es: >-
Individuo que crea obras de arte visuales, escénicas o literarias,
documentado en colecciones patrimoniales para atribucion, procedencia
e investigacion de historia del arte.
ar: >-
فرد يقوم بإنشاء أعمال فنية بصرية أو أدائية أو أدبية، موثق في
مجموعات التراث لأغراض النسب والمصدر والبحث في تاريخ الفن.
id: >-
Individu yang menciptakan karya seni visual, pertunjukan, atau sastra,
didokumentasikan dalam koleksi warisan untuk atribusi, provenans, dan
penelitian sejarah seni.
zh: >-
创作视觉、表演或文学艺术作品的个人,在遗产收藏中记录用于归属、来源
和艺术史研究目的。
exact_mappings:
- schema:Person
broad_mappings:
- crm:E21_Person
- wd:Q483501
structured_aliases:
- literal_form: kunstenaar
in_language: nl
- literal_form: Kuenstler
in_language: de
- literal_form: artiste
in_language: fr
- literal_form: artista
in_language: es
- literal_form: فنان
in_language: ar
- literal_form: seniman
in_language: id
- literal_form: 艺术家
in_language: zh
examples:
- value:
has_name:
has_label: "Rembrandt van Rijn"
description: Dutch Golden Age painter
- value:
has_name:
has_label: "Vincent van Gogh"
description: Post-impressionist painter
- value:
has_name:
has_label: "M.C. Escher"
description: Graphic artist
keywords:
- creator
- visual arts
- painter
- sculptor
- attribution
- art history
slots:
- has_name
- has_name
comments:
- Used for artwork attribution and provenance
- Links to artworks through creation events
- May include dates, nationality, artistic movement
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.6"
specificity_rationale: Specific role in art and cultural heritage contexts
custodian_types: "['Museum', 'Gallery', 'ArtArchive']"

View file

@ -1,22 +1,130 @@
id: https://nde.nl/ontology/hc/class/Artwork
name: Artwork
title: Artwork
description: An artwork in a collection.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
default_prefix: hc
crm: http://www.cidoc-crm.org/cidoc-crm/
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/has_title
- ../slots/has_description
- ../slots/identified_by
default_prefix: hc
classes:
Artwork:
class_uri: schema:VisualArtwork
description: Artwork.
class_uri: hc:Artwork
description: >-
Visual artwork in a collection.
Represents a creative work of visual art such as a painting, sculpture,
drawing, photograph, or other artistic production held by a heritage
custodian.
alt_descriptions:
nl:
text: >-
Visueel kunstwerk in een collectie.
Vertegenwoordigt een creatief werk van beeldende kunst zoals een schilderij,
beeldhouwwerk, tekening, fotografie of andere artistieke productie
in bezit van een erfgoedbeheerder.
de:
text: >-
Visuelles Kunstwerk in einer Sammlung.
Repräsentiert ein kreatives Werk der bildenden Kunst wie ein Gemälde,
eine Skulptur, Zeichnung, Fotografie oder andere künstlerische Produktion
im Besitz eines Kulturgüterverwalters.
fr:
text: >-
Œuvre d'art visuel dans une collection.
Représente une œuvre créative d'art visuel telle qu'une peinture, sculpture,
dessin, photographie ou autre production artistique détenue par un
dépositaire du patrimoine.
es:
text: >-
Obra de arte visual en una colección.
Representa una obra creativa de arte visual como una pintura, escultura,
dibujo, fotografía u otra producción artística en posesión de un
custodio del patrimonio.
ar:
text: >-
عمل فني بصري في مجموعة.
يمثل عملاً إبداعيًا من الفنون البصرية مثل اللوحة أو النحت أو الرسم
أو التصوير الفوتوغرافي أو أي إنتاج فني آخر بحوزة أمين التراث.
id:
text: >-
Karya seni visual dalam koleksi.
Mewakili karya kreatif seni visual seperti lukisan, patung, gambar,
fotografi, atau produksi artistik lainnya yang dimiliki pengelola warisan.
zh:
text: >-
收藏中的视觉艺术作品。
代表遗产保管人持有的绘画、雕塑、素描、摄影或其他艺术创作等视觉艺术创意作品。
examples:
- value:
has_title: The Night Watch
has_description: Oil on canvas painting by Rembrandt van Rijn, 1642
description: Famous painting by Rembrandt
close_mappings:
- schema:VisualArtwork
- crm:E22_Human-Made_Object
broad_mappings:
- schema:CreativeWork
structured_aliases:
- literal_form: kunstwerk
in_language: nl
- literal_form: kunstobject
in_language: nl
- literal_form: Kunstwerk
in_language: de
- literal_form: œuvre d'art
in_language: fr
- literal_form: obra de arte
in_language: es
- literal_form: عمل فني
in_language: ar
- literal_form: karya seni
in_language: id
- literal_form: 艺术作品
in_language: zh
keywords:
- artwork
- visual art
- painting
- sculpture
- drawing
- photograph
- creative work
slots:
- has_title
- has_description
- identified_by
slot_usage:
has_title:
required: true
examples:
- value: The Night Watch
- value: Starry Night
has_description:
required: false
examples:
- value: Oil on canvas painting by Rembrandt van Rijn, 1642
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.30"
specificity_rationale: "Artwork is a core domain concept for museums and galleries."
custodian_types: "['M', 'G']"
comments:
- Represents visual artworks in heritage collections
- May include paintings, sculptures, drawings, photographs, etc.
- Use more specific classes when available (e.g., Painting, Sculpture)
see_also:
- https://schema.org/VisualArtwork
- http://www.cidoc-crm.org/entity/E22-Human-Made-Object

View file

@ -1,32 +1,137 @@
id: https://nde.nl/ontology/hc/class/AspectRatio
name: AspectRatio
title: AspectRatio
description: 'The aspect ratio of a visual media object (video, image).
Used to store structured aspect ratio information (e.g., "16:9", "4:3").'
title: Aspect Ratio
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
default_prefix: hc
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/has_degree
- ../slots/has_value
- ../slots/has_label
default_prefix: hc
classes:
AspectRatio:
class_uri: schema:PropertyValue
description: Aspect ratio specification.
class_uri: hc:AspectRatio
description: >-
Aspect ratio of a visual media object (video, image).
Represents the proportional relationship between width and height
of a visual medium, expressed as a ratio (e.g., "16:9", "4:3", "21:9").
alt_descriptions:
nl:
text: >-
Beeldverhouding van een visueel mediaobject (video, afbeelding).
Vertegenwoordigt de proportionele relatie tussen breedte en hoogte
van een visueel medium, uitgedrukt als een verhouding (bijv. "16:9", "4:3", "21:9").
de:
text: >-
Seitenverhältnis eines visuellen Medienobjekts (Video, Bild).
Repräsentiert die proportionale Beziehung zwischen Breite und Höhe
eines visuellen Mediums, ausgedrückt als Verhältnis (z.B. "16:9", "4:3", "21:9").
fr:
text: >-
Rapport d'aspect d'un objet média visuel (vidéo, image).
Représente la relation proportionnelle entre la largeur et la hauteur
d'un support visuel, exprimée sous forme de rapport (par ex. "16:9", "4:3", "21:9").
es:
text: >-
Relación de aspecto de un objeto de medios visuales (video, imagen).
Representa la relación proporcional entre el ancho y el alto
de un medio visual, expresada como una proporción (por ejemplo, "16:9", "4:3", "21:9").
ar:
text: >-
نسبة العرض إلى الارتفاع لكائن وسائط مرئية (فيديو، صورة).
تمثل العلاقة التناسبية بين العرض والارتفاع لوسيط مرئي،
معبرًا عنها كنسبة (مثلاً "16:9"، "4:3"، "21:9").
id:
text: >-
Rasio aspek objek media visual (video, gambar).
Mewakili hubungan proporsional antara lebar dan tinggi media visual,
dinyatakan sebagai rasio (misalnya "16:9", "4:3", "21:9").
zh:
text: >-
视觉媒体对象(视频、图像)的纵横比。
表示视觉媒体的宽度和高度之间的比例关系,以比率表示(例如"16:9"、"4:3"、"21:9")。
examples:
- value:
has_label: 16:9 Widescreen
has_value: "16:9"
description: Standard widescreen aspect ratio
- value:
has_label: 4:3 Standard
has_value: "4:3"
description: Traditional television aspect ratio
- value:
has_label: 21:9 Ultrawide
has_value: "21:9"
description: Cinematic ultrawide aspect ratio
close_mappings:
- schema:PropertyValue
structured_aliases:
- literal_form: beeldverhouding
in_language: nl
- literal_form: aspectratio
in_language: nl
- literal_form: Seitenverhältnis
in_language: de
- literal_form: Bildformat
in_language: de
- literal_form: rapport d'aspect
in_language: fr
- literal_form: format d'image
in_language: fr
- literal_form: relación de aspecto
in_language: es
- literal_form: formato de imagen
in_language: es
- literal_form: نسبة العرض إلى الارتفاع
in_language: ar
- literal_form: rasio aspek
in_language: id
- literal_form: 纵横比
in_language: zh
- literal_form: 宽高比
in_language: zh
keywords:
- aspect ratio
- width height ratio
- display format
- video format
- image dimensions
slots:
- has_degree
- has_label
- has_value
slot_usage:
has_degree:
# range: string
description: The aspect ratio string (e.g., "16:9").
has_label:
required: false
examples:
- value: '16:9'
- value: '4:3'
- value: 16:9 Widescreen
- value: 4:3 Standard
has_value:
required: true
examples:
- value: "16:9"
- value: "4:3"
- value: "21:9"
- value: "1:1"
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.20"
specificity_rationale: "Aspect ratio is a technical property applicable to any visual media."
custodian_types: "['*']"
common_ratios: "16:9, 4:3, 21:9, 1:1, 2.39:1 (cinema)"
comments:
- Represents proportional relationship between width and height
- Common ratios include 16:9 (widescreen), 4:3 (standard), 21:9 (ultrawide)
- Used for video, images, and display specifications
see_also:
- https://schema.org/PropertyValue

View file

@ -8,6 +8,7 @@ prefixes:
foaf: http://xmlns.com/foaf/0.1/
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../enums/AsserterTypeEnum
@ -21,17 +22,127 @@ imports:
default_prefix: hc
classes:
Asserter:
class_uri: prov:Agent
description: "An agent (person, organization, or system) responsible for making an assertion about a heritage entity.\n**PROV-O ALIGNMENT**:\nMaps to `prov:Agent` - \"An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity.\"\n**TYPES OF ASSERTERS**:\n| Type | Description | Example | |------|-------------|---------| | HUMAN_ANALYST | Expert making judgment | \"jane.doe@nde.nl\" | | AUTOMATED_SYSTEM | Software system | \"primary-presence-classifier/1.0\" | | AI_AGENT | AI/ML model | \"claude-opus-4\", \"opencode-claude-sonnet-4\" | | ORGANIZATION | Institution | \"Noord-Hollands Archief\" |\n**USE CASES**:\n1. **Attribution Tracking**: Who made this assertion about primary presence? 2. **Provenance Chain**: Trace assertions back to their source agent. 3. **Quality Assessment**: Different asserters may have different reliability. 4. **Accountability**: Identify responsible party for each\
\ assertion.\n**EXAMPLE**:\n```yaml Asserter:\n identified_by: https://nde.nl/ontology/hc/asserter/claude-opus-4\n has_label: Claude Opus 4\n has_type: AI_AGENT\n has_description: Anthropic Claude AI model used for assertion generation\n has_version: \"claude-opus-4-20250514\"\n```"
exact_mappings:
- prov:Agent
class_uri: hc:Asserter
description: >-
Agent responsible for making an assertion about a heritage entity.
Represents a person, organization, or system that bears responsibility
for claims made about heritage data, enabling attribution tracking,
provenance chains, and quality assessment.
alt_descriptions:
nl:
text: >-
Agent verantwoordelijk voor het doen van een bewering over een erfgoedentiteit.
Vertegenwoordigt een persoon, organisatie of systeem dat verantwoordelijk is
voor beweringen over erfgoedgegevens, waardoor toeschrijving, herkomstketens
en kwaliteitsbeoordeling mogelijk worden.
de:
text: >-
Akteur, der für eine Behauptung über eine Kulturgüterentität verantwortlich ist.
Repräsentiert eine Person, Organisation oder ein System, das Verantwortung
für Behauptungen über Kulturgüterdaten trägt und Attribution, Provenienzketten
und Qualitätsbewertung ermöglicht.
fr:
text: >-
Agent responsable d'une assertion sur une entité patrimoniale.
Représente une personne, une organisation ou un système qui assume la
responsabilité des affirmations sur les données patrimoniales, permettant
le suivi des attributions, les chaînes de provenance et l'évaluation de la qualité.
es:
text: >-
Agente responsable de hacer una afirmación sobre una entidad patrimonial.
Representa a una persona, organización o sistema que asume la responsabilidad
de las afirmaciones sobre datos patrimoniales, permitiendo el seguimiento
de atribuciones, cadenas de procedencia y evaluación de calidad.
ar:
text: >-
وكيل مسؤول عن إصدار تأكيد حول كيان تراثي.
يمثل شخصًا أو منظمة أو نظامًا يتحمل مسؤولية الادعاءات حول بيانات التراث،
مما يتيح تتبع النسب وسلاسل المصدر وتقييم الجودة.
id:
text: >-
Agen yang bertanggung jawab atas pernyataan tentang entitas warisan.
Mewakili orang, organisasi, atau sistem yang bertanggung jawab atas klaim
tentang data warisan, memungkinkan pelacakan atribusi, rantai provenans,
dan penilaian kualitas.
zh:
text: >-
负责对遗产实体做出断言的代理。
代表对遗产数据声明承担责任的人员、组织或系统,实现归属追踪、
来源链和质量评估。
examples:
- value:
identified_by: https://nde.nl/ontology/hc/asserter/claude-opus-4
has_label: Claude Opus 4
has_type: AI_AGENT
has_description: Anthropic Claude AI model used for heritage data assertions
has_version: claude-opus-4-20250514
description: AI agent asserter
- value:
identified_by: https://nde.nl/ontology/hc/asserter/jane-doe-nde
has_label: Dr. Jane Doe
has_type: HUMAN_ANALYST
has_description: Senior digital heritage analyst at NDE
has_contact_point: jane.doe@nde.nl
description: Human analyst asserter
- value:
identified_by: https://nde.nl/ontology/hc/asserter/primary-presence-classifier
has_label: primary-presence-classifier
has_type: AUTOMATED_SYSTEM
has_description: Automated system for classifying primary digital presence
has_version: 1.0.0
description: Automated system asserter
close_mappings:
- foaf:Agent
- dcterms:Agent
broad_mappings:
- prov:Agent
related_mappings:
- schema:Person
- schema:Organization
structured_aliases:
- literal_form: bevestiger
in_language: nl
- literal_form: beweringmaker
in_language: nl
- literal_form: Asserent
in_language: de
- literal_form: Assertionsteller
in_language: de
- literal_form: asserteur
in_language: fr
- literal_form: déclarant
in_language: fr
- literal_form: asertor
in_language: es
- literal_form: afirmante
in_language: es
- literal_form: مؤكد
in_language: ar
- literal_form: مصرح
in_language: ar
- literal_form: penegas
in_language: id
- literal_form: pembuat pernyataan
in_language: id
- literal_form: 断言者
in_language: zh
- literal_form: 声明者
in_language: zh
keywords:
- asserter
- assertion
- attribution
- provenance
- agent
- claim source
slots:
- identified_by
- has_label
@ -42,21 +153,18 @@ classes:
- has_score
slot_usage:
identified_by:
# range: string # uriorcurie
required: true
identifier: true
examples:
- value: https://nde.nl/ontology/hc/asserter/claude-opus-4
- value: https://nde.nl/ontology/hc/asserter/jane-doe-nde
has_label:
# range: string
required: true
examples:
- value: Claude Opus 4
- value: Dr. Jane Doe
- value: primary-presence-classifier
has_description:
# range: string
required: false
examples:
- value: Anthropic Claude AI model used for heritage data assertions
@ -68,14 +176,13 @@ classes:
- value: AI_AGENT
- value: HUMAN_ANALYST
- value: AUTOMATED_SYSTEM
- value: ORGANIZATION
has_version:
# range: string
required: false
examples:
- value: claude-opus-4-20250514
- value: 1.2.3
has_contact_point:
# range: string
required: false
examples:
- value: jane.doe@nde.nl
@ -85,29 +192,13 @@ classes:
- Supports tracking of human, automated, and AI-based assertions
- Uses PROV-O Agent as primary ontology mapping
- Version tracking particularly important for AI/ML agents
- Asserter types: HUMAN_ANALYST, AUTOMATED_SYSTEM, AI_AGENT, ORGANIZATION
see_also:
- https://www.w3.org/TR/prov-o/#Agent
- https://xmlns.com/foaf/spec/#term_Agent
examples:
- value:
identified_by: https://nde.nl/ontology/hc/asserter/claude-opus-4
has_label: Claude Opus 4
has_type: AI_AGENT
has_description: Anthropic Claude AI model used for heritage data assertions
has_version: claude-opus-4-20250514
- value:
identified_by: https://nde.nl/ontology/hc/asserter/jane-doe-nde
has_label: Dr. Jane Doe
has_type: HUMAN_ANALYST
has_description: Senior digital heritage analyst at NDE
has_contact_point: jane.doe@nde.nl
- value:
identified_by: https://nde.nl/ontology/hc/asserter/primary-presence-classifier
has_label: primary-presence-classifier
has_type: AUTOMATED_SYSTEM
has_description: Automated system for classifying primary digital presence
has_version: 1.0.0
- Assertor
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.45"
specificity_rationale: "Asserter is moderately specific for provenance attribution across heritage contexts."
custodian_types: "['*']"
asserter_types: "HUMAN_ANALYST, AUTOMATED_SYSTEM, AI_AGENT, ORGANIZATION"

View file

@ -6,39 +6,142 @@ prefixes:
hc: https://nde.nl/ontology/hc/
prov: http://www.w3.org/ns/prov#
schema: http://schema.org/
default_prefix: hc
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/has_name
- ../slots/has_type
- ../slots/identified_by
default_prefix: hc
classes:
Assertor:
class_uri: prov:Agent
description: 'An agent that makes assertions or claims.
**USAGE**:
Used for:
- Assertion attribution
- Claim sources
- Statement authors
'
exact_mappings:
- prov:Agent
class_uri: hc:Assertor
description: >-
Agent that makes assertions or claims about heritage data.
Used for assertion attribution, claim sources, and statement authors.
Distinguishes between human experts, software systems, and AI agents
that contribute assertions to heritage datasets.
alt_descriptions:
nl:
text: >-
Agent die beweringen of claims doet over erfgoedgegevens.
Gebruikt voor toeschrijving van beweringen, claimbronnen en auteurs
van verklaringen. Onderscheidt tussen menselijke experts, softwaresystemen
en AI-agenten die beweringen toevoegen aan erfgoeddatabases.
de:
text: >-
Akteur, der Behauptungen oder Ansprüche über Kulturgüterdaten aufstellt.
Wird für Behauptungszuschreibung, Quellenangaben und Erklärungsautoren verwendet.
Unterscheidet zwischen menschlichen Experten, Softwaresystemen und KI-Agenten,
die Behauptungen zu Kulturgüterdatensätzen beisteuern.
fr:
text: >-
Agent qui fait des assertions ou des réclamations sur les données patrimoniales.
Utilisé pour l'attribution d'assertions, les sources de réclamations et les
auteurs de déclarations. Distingue les experts humains, les systèmes logiciels
et les agents IA qui contribuent aux assertions sur les ensembles de données patrimoniales.
es:
text: >-
Agente que hace afirmaciones o reclamaciones sobre datos patrimoniales.
Se utiliza para la atribución de afirmaciones, fuentes de reclamaciones y
autores de declaraciones. Distingue entre expertos humanos, sistemas de software
y agentes de IA que contribuyen con afirmaciones a los conjuntos de datos patrimoniales.
ar:
text: >-
وكيل يقدم تأكيدات أو ادعاءات حول بيانات التراث.
يُستخدم لنسب التأكيدات ومصادر الادعاءات ومؤلفي البيانات.
يميز بين الخبراء البشريين والأنظمة البرمجية ووكلاء الذكاء الاصطناعي
الذين يساهمون بالتأكيدات في مجموعات بيانات التراث.
id:
text: >-
Agen yang membuat pernyataan atau klaim tentang data warisan.
Digunakan untuk atribusi pernyataan, sumber klaim, dan penulis pernyataan.
Membedakan antara ahli manusia, sistem perangkat lunak, dan agen AI
yang berkontribusi pernyataan pada kumpulan data warisan.
zh:
text: >-
对遗产数据做出断言或声明的代理。
用于断言归属、声明来源和声明作者。区分对遗产数据集做出断言的
人类专家、软件系统和AI代理。
examples:
- value:
has_name: OpenCode Claude
has_type: SOFTWARE
identified_by: https://nde.nl/agent/opencode-claude
description: Software agent assertor
- value:
has_name: Dr. Maria Schmidt
has_type: HUMAN
identified_by: https://nde.nl/agent/maria-schmidt
description: Human expert assertor
close_mappings:
- schema:Person
- schema:Organization
broad_mappings:
- prov:Agent
structured_aliases:
- literal_form: beweringdoener
in_language: nl
- literal_form: claimsteller
in_language: nl
- literal_form: Assertor
in_language: de
- literal_form: Behauptungsteller
in_language: de
- literal_form: asserteur
in_language: fr
- literal_form: assertor
in_language: es
- literal_form: مؤكد
in_language: ar
- literal_form: pembuat klaim
in_language: id
- literal_form: 断言者
in_language: zh
keywords:
- assertor
- assertion
- claim
- attribution
- provenance
- source
slots:
- has_name
- has_type
- identified_by
slot_usage:
has_name:
required: true
examples:
- value: OpenCode Claude
- value: Dr. Maria Schmidt
has_type:
required: false
examples:
- value: SOFTWARE
- value: HUMAN
- value: AI
identified_by:
required: false
examples:
- value: https://nde.nl/agent/opencode-claude
annotations:
specificity_score: '0.45'
specificity_rationale: Moderately specific - provenance attribution common.
custodian_types: '[''*'']'
examples:
- value:
assertor_name: OpenCode Claude
assertor_type: SOFTWARE
assertor_uri: https://nde.nl/agent/opencode-claude
description: Software agent assertor
slots: []
specificity_score: "0.45"
specificity_rationale: "Assertor is moderately specific for provenance attribution across heritage contexts."
custodian_types: "['*']"
assertor_types: "HUMAN, SOFTWARE, AI, ORGANIZATION"
comments:
- Similar to Asserter but with simpler structure
- Used for assertion attribution and provenance tracking
- Distinguishes human, software, and AI assertors
see_also:
- Asserter
- https://www.w3.org/TR/prov-o/#Agent

View file

@ -1,25 +1,126 @@
id: https://nde.nl/ontology/hc/class/AssessmentCategory
name: AssessmentCategory
title: AssessmentCategory
description: A category or classification used in an assessment (e.g., condition assessment).
title: Assessment Category
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
- ../slots/has_type
- ../slots/has_label
- ../slots/has_description
default_prefix: hc
classes:
AssessmentCategory:
class_uri: skos:Concept
description: Assessment category concept.
class_uri: hc:AssessmentCategory
description: >-
Category or classification used in an assessment.
Represents a classification value used in condition assessments,
risk assessments, or other evaluation workflows for heritage collections.
alt_descriptions:
nl:
text: >-
Categorie of classificatie gebruikt in een beoordeling.
Vertegenwoordigt een classificatiewaarde gebruikt in toestandsbeoordelingen,
risicobeoordelingen of andere evaluatiewerkstromen voor erfgoedcollecties.
de:
text: >-
Kategorie oder Klassifikation, die in einer Bewertung verwendet wird.
Repräsentiert einen Klassifikationswert, der in Zustandsbewertungen,
Risikobewertungen oder anderen Bewertungsworkflows für Kulturgütersammlungen verwendet wird.
fr:
text: >-
Catégorie ou classification utilisée dans une évaluation.
Représente une valeur de classification utilisée dans les évaluations de l'état,
les évaluations des risques ou d'autres flux de travail d'évaluation pour les collections patrimoniales.
es:
text: >-
Categoría o clasificación utilizada en una evaluación.
Representa un valor de clasificación utilizado en evaluaciones de condición,
evaluaciones de riesgos u otros flujos de trabajo de evaluación para colecciones patrimoniales.
ar:
text: >-
فئة أو تصنيف مستخدم في التقييم.
يمثل قيمة تصنيف مستخدمة في تقييمات الحالة أو تقييمات المخاطر
أو سير عمل التقييم الأخرى لمجموعات التراث.
id:
text: >-
Kategori atau klasifikasi yang digunakan dalam penilaian.
Mewakili nilai klasifikasi yang digunakan dalam penilaian kondisi,
penilaian risiko, atau alur kerja evaluasi lainnya untuk koleksi warisan.
zh:
text: >-
评估中使用的类别或分类。
表示遗产藏品的状况评估、风险评估或其他评估工作流中使用的分类值。
examples:
- value:
has_label: Good Condition
has_type: ConditionAssessmentCategory
description: Condition assessment category
- value:
has_label: High Risk
has_type: RiskAssessmentCategory
description: Risk assessment category
broad_mappings:
- skos:Concept
- crm:E55_Type
structured_aliases:
- literal_form: beoordelingscategorie
in_language: nl
- literal_form: Bewertungkategorie
in_language: de
- literal_form: catégorie d'évaluation
in_language: fr
- literal_form: categoría de evaluación
in_language: es
- literal_form: فئة التقييم
in_language: ar
- literal_form: kategori penilaian
in_language: id
- literal_form: 评估类别
in_language: zh
keywords:
- assessment category
- condition assessment
- risk assessment
- evaluation
- classification
slots:
- has_type
- has_label
- has_description
slot_usage:
has_type:
# range: string # uriorcurie
required: false
examples:
- value: ConditionAssessmentCategory
- value: RiskAssessmentCategory
has_label:
required: true
examples:
- value: Good
- value: Fair
- value: Poor
- value: High Risk
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.25"
specificity_rationale: "Assessment categories are moderately specific to heritage evaluation workflows."
custodian_types: "['*']"
category_types: "ConditionAssessmentCategory, RiskAssessmentCategory"
comments:
- Used for condition and risk assessment classifications
- Values typically include: Good, Fair, Poor for conditions
- Risk levels: High, Medium, Low
see_also:
- AssessmentCategoryType
- AssessmentCategoryTypes

View file

@ -1,27 +1,114 @@
id: https://nde.nl/ontology/hc/class/AssessmentCategoryType
name: AssessmentCategoryType
title: AssessmentCategoryType
description: >-
Type of assessment category.
title: Assessment Category Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
crm: http://www.cidoc-crm.org/cidoc-crm/
default_prefix: hc
imports:
- linkml:types
- ../slots/has_label
- ../slots/has_description
classes:
AssessmentCategoryType:
class_uri: skos:Concept
description: Assessment category type.
annotations:
specificity_score: 0.1
specificity_rationale: "Generic utility class created during migration"
custodian_types: '["*"]'
class_uri: hc:AssessmentCategoryType
description: >-
Type of assessment category classification.
Abstract base class for specific assessment category types such as
condition assessment categories, risk assessment categories, and
other evaluation classification schemes.
alt_descriptions:
nl:
text: >-
Type beoordelingscategorie-classificatie.
Abstracte basisklasse voor specifieke beoordelingscategorietypen zoals
toestandsbeoordelingscategorieën, risicobeoordelingscategorieën en
andere evaluatieclassificatieschema's.
de:
text: >-
Art der Bewertungkategorieklassifikation.
Abstrakte Basisklasse für spezifische Bewertungkategorietypen wie
Zustandsbewertungskategorien, Risikobewertungskategorien und
andere Bewertungsklassifikationsschemata.
fr:
text: >-
Type de classification de catégorie d'évaluation.
Classe de base abstraite pour les types de catégories d'évaluation
spécifiques tels que les catégories d'évaluation de l'état,
les catégories d'évaluation des risques et d'autres schémas
de classification d'évaluation.
es:
text: >-
Tipo de clasificación de categoría de evaluación.
Clase base abstracta para tipos específicos de categorías de evaluación
como categorías de evaluación de condición, categorías de evaluación
de riesgos y otros esquemas de clasificación de evaluación.
ar:
text: >-
نوع تصنيف فئة التقييم.
فئة أساسية مجردة لأنواع محددة من فئات التقييم مثل فئات تقييم الحالة
وفئات تقييم المخاطر ومخططات تصنيف التقييم الأخرى.
id:
text: >-
Jenis klasifikasi kategori penilaian.
Kelas dasar abstrak untuk jenis kategori penilaian spesifik seperti
kategori penilaian kondisi, kategori penilaian risiko, dan
skema klasifikasi evaluasi lainnya.
zh:
text: >-
评估类别分类的类型。
特定评估类别类型的抽象基类,如状况评估类别、风险评估类别
和其他评估分类方案。
abstract: true
broad_mappings:
- skos:Concept
- crm:E55_Type
structured_aliases:
- literal_form: beoordelingscategorietype
in_language: nl
- literal_form: Bewertungkategorietyp
in_language: de
- literal_form: type de catégorie d'évaluation
in_language: fr
- literal_form: tipo de categoría de evaluación
in_language: es
- literal_form: نوع فئة التقييم
in_language: ar
- literal_form: tipe kategori penilaian
in_language: id
- literal_form: 评估类别类型
in_language: zh
keywords:
- assessment category type
- evaluation classification
- condition category
- risk category
slots:
- has_label
- has_label
- has_description
slot_usage:
has_label:
required: true
examples:
- value: Condition Assessment
- value: Risk Assessment
annotations:
specificity_score: "0.30"
specificity_rationale: "AssessmentCategoryType is moderately specific to heritage evaluation workflows."
custodian_types: "['*']"
comments:
- Abstract base class for assessment category types
- Extended by ConditionAssessmentCategory, RiskAssessmentCategory
see_also:
- AssessmentCategory
- AssessmentCategoryTypes

View file

@ -1,10 +1,12 @@
id: https://nde.nl/ontology/hc/class/AssessmentCategoryTypes
name: AssessmentCategoryTypes
title: AssessmentCategoryTypes
title: Assessment Category Types
description: Concrete assessment category types.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
crm: http://www.cidoc-crm.org/cidoc-crm/
default_prefix: hc
imports:
- ./AssessmentCategoryType
@ -12,15 +14,127 @@ imports:
classes:
ConditionAssessmentCategory:
is_a: AssessmentCategoryType
description: Category for storage condition assessment (e.g. Good, Fair, Poor).
annotations:
custodian_types: '["*"]'
class_uri: hc:ConditionAssessmentCategory
description: >-
Category for storage condition assessment.
Used to classify the physical condition of collection items,
typically with values like Good, Fair, Poor, Critical.
alt_descriptions:
nl:
text: Categorie voor beoordeling van opslagcondities.
de:
text: Kategorie für Lagerungszustandsbewertung.
fr:
text: Catégorie pour l'évaluation de l'état de stockage.
es:
text: Categoría para evaluación de condición de almacenamiento.
ar:
text: فئة لتقييم حالة التخزين.
id:
text: Kategori untuk penilaian kondisi penyimpanan.
zh:
text: 存储状况评估类别。
broad_mappings:
- skos:Concept
- crm:E55_Type
structured_aliases:
- literal_form: toestandsbeoordelingscategorie
in_language: nl
- literal_form: Zustandsbewertungskategorie
in_language: de
- literal_form: catégorie d'évaluation de l'état
in_language: fr
- literal_form: categoría de evaluación de condición
in_language: es
- literal_form: فئة تقييم الحالة
in_language: ar
- literal_form: kategori penilaian kondisi
in_language: id
- literal_form: 状况评估类别
in_language: zh
keywords:
- condition assessment
- good fair poor
- physical condition
- conservation status
examples:
- value:
has_label: Good
has_description: Item in excellent condition with no visible damage
description: Good condition
- value:
has_label: Fair
has_description: Item with minor condition issues requiring monitoring
description: Fair condition
- value:
has_label: Poor
has_description: Item with significant damage requiring conservation treatment
description: Poor condition
annotations:
custodian_types: "['*']"
specificity_score: "0.40"
typical_values: "Good, Fair, Poor, Critical"
RiskAssessmentCategory:
is_a: AssessmentCategoryType
description: Category for risk assessment.
annotations:
custodian_types: '["*"]'
class_uri: hc:RiskAssessmentCategory
description: >-
Category for risk assessment.
Used to classify risk levels for collection items, typically
with values like High Risk, Medium Risk, Low Risk.
alt_descriptions:
nl:
text: Categorie voor risicobeoordeling.
de:
text: Kategorie für Risikobewertung.
fr:
text: Catégorie pour l'évaluation des risques.
es:
text: Categoría para evaluación de riesgos.
ar:
text: فئة لتقييم المخاطر.
id:
text: Kategori untuk penilaian risiko.
zh:
text: 风险评估类别。
broad_mappings:
- skos:Concept
- crm:E55_Type
structured_aliases:
- literal_form: risicobeoordelingscategorie
in_language: nl
- literal_form: Risikobewertungskategorie
in_language: de
- literal_form: catégorie d'évaluation des risques
in_language: fr
- literal_form: categoría de evaluación de riesgos
in_language: es
- literal_form: فئة تقييم المخاطر
in_language: ar
- literal_form: kategori penilaian risiko
in_language: id
- literal_form: 风险评估类别
in_language: zh
keywords:
- risk assessment
- high medium low risk
- risk level
- vulnerability
examples:
- value:
has_label: High Risk
has_description: Significant risk of damage or loss requiring immediate attention
description: High risk level
- value:
has_label: Medium Risk
has_description: Moderate risk requiring monitoring and preventive measures
description: Medium risk level
- value:
has_label: Low Risk
has_description: Minimal risk with standard preventive measures sufficient
description: Low risk level
annotations:
custodian_types: "['*']"
specificity_score: "0.40"
typical_values: "High Risk, Medium Risk, Low Risk"

View file

@ -1,24 +1,152 @@
id: https://nde.nl/ontology/hc/class/Asset
name: Asset
title: Asset
description: A financial asset.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
default_prefix: hc
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/has_currency
- ../slots/has_value
- ../slots/has_label
default_prefix: hc
classes:
Asset:
class_uri: schema:MonetaryAmount
description: Asset value.
class_uri: hc:Asset
description: >-
Financial asset with monetary value.
Represents a financial holding or monetary resource belonging to
a heritage custodian, including endowments, investments, and
other financial instruments.
alt_descriptions:
nl:
text: >-
Financieel activum met monetaire waarde.
Vertegenwoordigt een financiële positie of monetaire middel dat toebehoort
aan een erfgoedbeheerder, inclusief schenkingen, investeringen en
andere financiële instrumenten.
de:
text: >-
Finanzvermögen mit Geldwert.
Repräsentiert eine finanzielle Position oder monetäre Ressource im Besitz
eines Kulturgüterverwalters, einschließlich Stiftungen, Investitionen und
anderer Finanzinstrumente.
fr:
text: >-
Actif financier avec une valeur monétaire.
Représente une position financière ou une ressource monétaire appartenant
à un dépositaire du patrimoine, y compris les dotations, les investissements
et autres instruments financiers.
es:
text: >-
Activo financiero con valor monetario.
Representa una posición financiera o recurso monetario perteneciente a
un custodio del patrimonio, incluyendo dotaciones, inversiones y
otros instrumentos financieros.
ar:
text: >-
أصل مالي بقيمة نقدية.
يمثل مركزًا ماليًا أو موردًا نقديًا يملكه أمين التراث،
بما في ذلك الوقفات والاستثمارات وغيرها من الأدوات المالية.
id:
text: >-
Aset keuangan dengan nilai moneter.
Mewakili posisi keuangan atau sumber daya moneter yang dimiliki pengelola
warisan, termasuk dana abadi, investasi, dan instrumen keuangan lainnya.
zh:
text: >-
具有货币价值的金融资产。
代表遗产保管人拥有的金融头寸或货币资源,包括捐赠基金、投资和其他金融工具。
examples:
- value:
has_label: Endowment Fund
has_value: 5000000
has_currency: EUR
description: Institutional endowment
- value:
has_label: Investment Portfolio
has_value: 2500000
has_currency: EUR
description: Investment holdings
close_mappings:
- schema:MonetaryAmount
- schema:PriceSpecification
structured_aliases:
- literal_form: activum
in_language: nl
- literal_form: vermogen
in_language: nl
- literal_form: Vermögenswert
in_language: de
- literal_form: Asset
in_language: de
- literal_form: actif
in_language: fr
- literal_form: actif financier
in_language: fr
- literal_form: activo
in_language: es
- literal_form: activo financiero
in_language: es
- literal_form: أصل
in_language: ar
- literal_form: أصل مالي
in_language: ar
- literal_form: aset
in_language: id
- literal_form: aset keuangan
in_language: id
- literal_form: 资产
in_language: zh
- literal_form: 金融资产
in_language: zh
keywords:
- asset
- financial asset
- monetary value
- endowment
- investment
- holdings
slots:
- has_value
- has_currency
- has_label
slot_usage:
has_value:
range: float
required: true
examples:
- value: 5000000
- value: 2500000
has_currency:
required: true
examples:
- value: EUR
- value: USD
- value: GBP
has_label:
required: false
examples:
- value: Endowment Fund
- value: Investment Portfolio
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.20"
specificity_rationale: "Asset is a financial concept broadly applicable across heritage custodians."
custodian_types: "['*']"
asset_types: "Endowment, Investment, Cash, Property"
comments:
- Represents financial holdings of heritage custodians
- Used for endowments, investments, and other monetary assets
- Value expressed with currency
see_also:
- https://schema.org/MonetaryAmount

View file

@ -3,19 +3,145 @@ name: AssociationArchive
title: Association Archive Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
wd: http://www.wikidata.org/entity/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
rico: https://www.ica.org/standards/RiC/ontology#
imports:
- linkml:types
- ../slots/part_of
- ../slots/has_label
- ../slots/has_description
classes:
AssociationArchive:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
description: "Archive preserving records of associations, societies, clubs, and\nother membership-based organizations.\n\n**Wikidata**: Q27030820\n\n**IMPORTANT: Parent Organization Constraint**\n\nAssociationArchive is an archive that holds records OF an association/society.\nThe parent custodian (the association whose records are archived) should \ntypically be a HeritageSocietyType. Use `parent_society` slot to link to \nthe heritage society that created/owns these archival records.\n\n**Scope**:\nAssociation archives (Verbandsarchive) preserve:\n- Founding documents and bylaws\n- Membership records and registers\n- Meeting minutes and proceedings\n- Correspondence and communications\n- Publications and newsletters\n- Event documentation\n- Financial records\n- Photographs and memorabilia\n\n**Types of Associations**:\n- Professional associations and trade bodies\n- Social and cultural clubs\n- Sports organizations\n- Alumni associations\n- Charitable organizations\n- Advocacy and\
\ interest groups\n\n**Parent Organization Link**:\nUse `parent_society` slot to link to the HeritageSocietyType whose \nrecords this archive preserves. The parent society MUST be a heritage \nsociety (S type in GLAMORCUBESFIXPHDNT taxonomy).\n\n**Related Types**:\n- FoundationArchive (Q27030827) - Archives of foundations\n- TradeUnionArchive (Q66604802) - Labor organization archives\n- Vereinsarchiv (Q130758889) - German club/society archives\n- HeritageSocietyType - Parent organization type (whose records are archived)\n"
class_uri: hc:AssociationArchive
description: >-
Archive preserving records of associations, societies, clubs, and
other membership-based organizations.
Maintains founding documents, membership records, meeting minutes,
correspondence, publications, event documentation, and memorabilia
from professional associations, social clubs, sports organizations,
alumni associations, charitable organizations, and advocacy groups.
alt_descriptions:
nl:
text: >-
Archief dat records bewaart van verenigingen, genootschappen, clubs en
andere op lidmaatschap gebaseerde organisaties.
Bewaart oprichtingsdocumenten, ledenadministratie, notulen, correspondentie,
publicaties, evenementendocumentatie en memorabilia van beroepsverenigingen,
sociale clubs, sportorganisaties, alumni-verenigingen en charitatieve organisaties.
de:
text: >-
Archiv, das Unterlagen von Verbänden, Gesellschaften, Klubs und anderen
mitgliedschaftsbasierten Organisationen bewahrt.
Bewahrt Gründungsdokumente, Mitgliedsunterlagen, Protokolle, Korrespondenz,
Publikationen, Veranstaltungsdokumentation und Memorabilien von Berufsverbänden,
Sozialclubs, Sportorganisationen, Alumni-Vereinigungen und Wohltätigkeitsorganisationen.
fr:
text: >-
Archives préservant les documents d'associations, sociétés, clubs et
autres organisations basées sur l'adhésion.
Conserve les documents fondateurs, les registres des membres, les procès-verbaux,
la correspondance, les publications, la documentation d'événements et les
memorabilia des associations professionnelles, clubs sociaux, organisations
sportives, associations d'anciens élèves et organisations caritatives.
es:
text: >-
Archivo que preserva registros de asociaciones, sociedades, clubes y
otras organizaciones basadas en membresía.
Mantiene documentos fundacionales, registros de membresía, actas, correspondencia,
publicaciones, documentación de eventos y memorabilia de asociaciones profesionales,
clubes sociales, organizaciones deportivas, asociaciones de exalumnos y organizaciones benéficas.
ar:
text: >-
أرشيف يحفظ سجلات الجمعيات والمؤسسات والأندية والمنظمات الأخرى القائمة على العضوية.
يحافظ على الوثائق التأسيسية وسجلات العضوية ومحاضر الاجتماعات والمراسلات
والمنشورات ووثائق الفعاليات والتذكارات من الجمعيات المهنية والأندية الاجتماعية
والمنظمات الرياضية وجمعيات الخريجين والمنظمات الخيرية.
id:
text: >-
Arsip yang melestarikan catatan asosiasi, masyarakat, klub, dan
organisasi berbasis keanggotaan lainnya.
Menyimpan dokumen pendirian, catatan keanggotaan, notulen, korespondensi,
publikasi, dokumentasi acara, dan memorabilia dari asosiasi profesional,
klub sosial, organisasi olahraga, asosiasi alumni, dan organisasi amal.
zh:
text: >-
保存协会、学会、俱乐部和其他会员制组织记录的档案。
维护专业协会、社交俱乐部、体育组织、校友会和慈善组织的成立文件、
会员记录、会议纪要、通信、出版物、活动文档和纪念品。
examples:
- value:
has_label: Professional Association Archive
part_of: HeritageSocietyType
description: Archive of a professional association
exact_mappings:
- wd:Q27030820
close_mappings:
- schema:ArchiveOrganization
- rico:CorporateBody
broad_mappings:
- skos:Concept
related_mappings:
- wd:Q27030827
- wd:Q66604802
structured_aliases:
- literal_form: verenigingsarchief
in_language: nl
- literal_form: genootschapsarchief
in_language: nl
- literal_form: Verbandsarchiv
in_language: de
- literal_form: Vereinsarchiv
in_language: de
- literal_form: archives d'association
in_language: fr
- literal_form: archivo de asociación
in_language: es
- literal_form: أرشيف الجمعيات
in_language: ar
- literal_form: arsip asosiasi
in_language: id
- literal_form: 协会档案
in_language: zh
keywords:
- association archive
- society records
- club archive
- membership records
- organizational archive
slots:
- part_of
slot_usage: {}
- has_label
- has_description
slot_usage:
part_of:
required: false
examples:
- value: HeritageSocietyType
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.55"
specificity_rationale: "AssociationArchive is highly specific to membership-based organizational archives."
custodian_types: "['AssociationArchive']"
wikidata_qid: "Q27030820"
related_types: "FoundationArchive (Q27030827), TradeUnionArchive (Q66604802)"
parent_constraint: "Parent custodian should typically be a HeritageSocietyType"
comments:
- Archive holding records of associations, societies, clubs
- Parent organization should typically be a HeritageSocietyType
- Use parent_society slot to link to the heritage society whose records are archived
- Related: FoundationArchive, TradeUnionArchive
see_also:
- HeritageSocietyType
- wd:Q27030827
- wd:Q66604802

View file

@ -1,26 +1,138 @@
id: https://nde.nl/ontology/hc/class/AuctionHouse
name: AuctionHouse
title: AuctionHouse
description: An organization that conducts auctions.
title: Auction House
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
default_prefix: hc
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/has_name
- ../slots/conducted_by
- ../slots/has_description
default_prefix: hc
classes:
AuctionHouse:
class_uri: schema:AuctionHouse
description: An auction house.
class_uri: hc:AuctionHouse
description: >-
Organization that conducts auctions.
Commercial establishment that facilitates the buying and selling of
goods through competitive bidding, often specializing in art,
antiques, collectibles, or other valuable items.
alt_descriptions:
nl:
text: >-
Organisatie die veilingen houdt.
Commerciële instelling die de koop en verkoop van goederen via
competitief bieden faciliteert, vaak gespecialiseerd in kunst,
antiquiteiten, verzamelobjecten of andere waardevolle items.
de:
text: >-
Organisation, die Auktionen durchführt.
Kommerzielle Einrichtung, die den Kauf und Verkauf von Waren durch
wettbewerbliches Bieten ermöglicht, oft spezialisiert auf Kunst,
Antiquitäten, Sammlerstücke oder andere wertvolle Gegenstände.
fr:
text: >-
Organisation qui mène des enchères.
Établissement commercial qui facilite l'achat et la vente de biens
par des enchères compétitives, souvent spécialisé dans l'art,
les antiquités, les objets de collection ou d'autres objets de valeur.
es:
text: >-
Organización que conduce subastas.
Establecimiento comercial que facilita la compra y venta de bienes
mediante licitación competitiva, a menudo especializado en arte,
antigüedades, coleccionables u otros objetos valiosos.
ar:
text: >-
منظمة تقيم المزادات.
مؤسسة تجارية تسهل شراء وبيع السلع من خلال المزايدة التنافسية،
غالبًا متخصصة في الفن أو التحف أو المقتنيات أو العناصر القيمة الأخرى.
id:
text: >-
Organisasi yang menyelenggarakan lelang.
Lembaga komersial yang memfasilitasi pembelian dan penjualan barang
melalui penawaran kompetitif, sering kali berspesialisasi dalam seni,
barang antik, koleksi, atau barang berharga lainnya.
zh:
text: >-
举办拍卖的组织。
通过竞争性出价促进商品买卖的商业机构,通常专门经营艺术品、
古董、收藏品或其他贵重物品。
examples:
- value:
has_name: Christie's
has_description: International auction house specializing in fine art and antiques
description: International auction house
- value:
has_name: Sotheby's
has_description: Global auction house for art, jewelry, and collectibles
description: Global auction house
- value:
has_name: Van Sabben Poster Auctions
has_description: Dutch auction house specializing in vintage posters
description: Specialized auction house
close_mappings:
- schema:Organization
- schema:AuctionHouse
broad_mappings:
- skos:Concept
structured_aliases:
- literal_form: veilinghuis
in_language: nl
- literal_form: Auktionshaus
in_language: de
- literal_form: maison de ventes
in_language: fr
- literal_form: casa de subastas
in_language: es
- literal_form: دار المزادات
in_language: ar
- literal_form: rumah lelang
in_language: id
- literal_form: 拍卖行
in_language: zh
keywords:
- auction house
- auction
- bidding
- sales
- commercial
- art market
slots:
- has_name
- has_description
- conducted_by
slot_usage:
has_name:
# range: string
required: true
examples:
- value: Christie's
- value: Sotheby's
- value: Van Sabben Poster Auctions
has_description:
required: false
examples:
- value: International auction house specializing in fine art and antiques
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.40"
specificity_rationale: "AuctionHouse is specific to art market and commercial heritage contexts."
custodian_types: "['G', 'C']"
notable_examples: "Christie's, Sotheby's, Bonhams, Van Sabben"
comments:
- Organization that conducts auctions
- Often specializes in art, antiques, or collectibles
- May have relationship to galleries and dealers
see_also:
- AuctionSaleCatalog
- https://schema.org/AuctionHouse

View file

@ -1,33 +1,136 @@
id: https://nde.nl/ontology/hc/class/AuctionSaleCatalog
name: AuctionSaleCatalog
title: AuctionSaleCatalog
description: A catalog published for an auction sale.
title: Auction Sale Catalog
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
skos: http://www.w3.org/2004/02/skos/core#
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
default_prefix: hc
imports:
- linkml:types
- ../slots/has_name
- ../slots/publish
- ../slots/has_description
default_prefix: hc
classes:
AuctionSaleCatalog:
class_uri: schema:PublicationIssue
description: Auction sale catalog.
class_uri: hc:AuctionSaleCatalog
description: >-
Catalog published for an auction sale.
Printed or digital publication listing items available for sale at
an auction, typically including descriptions, images, estimated
values, and provenance information for each lot.
alt_descriptions:
nl:
text: >-
Catalogus gepubliceerd voor een veilingverkoop.
Gedrukte of digitale publicatie met vermelding van items die te koop
worden aangeboden op een veiling, doorgaans inclusief beschrijvingen,
afbeeldingen, geschatte waarden en herkomstgegevens voor elk kavel.
de:
text: >-
Katalog, der für eine Auktionsversteigerung veröffentlicht wird.
Gedruckte oder digitale Veröffentlichung, die die bei einer Auktion
zum Verkauf angebotenen Gegenstände auflistet, typischerweise mit
Beschreibungen, Bildern, Schätzwerten und Provenienzangaben für jedes Los.
fr:
text: >-
Catalogue publié pour une vente aux enchères.
Publication imprimée ou numérique répertoriant les articles mis en
vente lors d'une vente aux enchères, incluant généralement des descriptions,
des images, des estimations et des informations de provenance pour chaque lot.
es:
text: >-
Catálogo publicado para una venta en subasta.
Publicación impresa o digital que enumera los artículos disponibles
para la venta en una subasta, generalmente incluyendo descripciones,
imágenes, valores estimados e información de procedencia para cada lote.
ar:
text: >-
فهرس منشور للبيع بالمزاد.
منشور مطبوع أو رقمي يسرد العناصر المعروضة للبيع في المزاد،
يتضمن عادةً الأوصاف والصور والقيم المقدرة ومعلومات المصدر لكل قطعة.
id:
text: >-
Katalog yang diterbitkan untuk penjualan lelang.
Publikasi cetak atau digital yang mencantumkan barang yang tersedia
untuk dijual di lelang, biasanya termasuk deskripsi, gambar, nilai
perkiraan, dan informasi provenans untuk setiap lot.
zh:
text: >-
为拍卖销售出版的目录。
列出拍卖会上出售物品的印刷或数字出版物,通常包括每件拍品的
描述、图片、估价和来源信息。
examples:
- value:
has_name: Posters of the Dutch Avant-Garde
has_description: Auction catalog featuring 250 vintage posters from 1890-1940
description: Specialized poster auction catalog
- value:
has_name: Old Masters Sale
has_description: Catalog of European paintings from the 15th-18th centuries
description: Fine art auction catalog
close_mappings:
- schema:PublicationIssue
- dcterms:BibliographicResource
broad_mappings:
- skos:Concept
structured_aliases:
- literal_form: veilingcatalogus
in_language: nl
- literal_form: Auktionskatalog
in_language: de
- literal_form: catalogue de vente
in_language: fr
- literal_form: catálogo de subasta
in_language: es
- literal_form: فهرس المزاد
in_language: ar
- literal_form: katalog lelang
in_language: id
- literal_form: 拍卖目录
in_language: zh
keywords:
- auction catalog
- sale catalog
- auction house
- provenance
- lot descriptions
- estimates
slots:
- has_name
- has_description
- publish
slot_usage:
has_name:
# range: string
required: true
examples:
- value: Posters of the Dutch Avant-Garde
- value: Old Masters Sale
- value: Contemporary Art Evening Auction
has_description:
required: false
examples:
- value: Auction catalog featuring 250 vintage posters from 1890-1940
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.40"
specificity_rationale: "AuctionSaleCatalog is specific to art market documentation."
custodian_types: "['M', 'G', 'C']"
contents: "Lot descriptions, images, estimates, provenance"
comments:
- Published catalog for auction sales
- Contains lot descriptions, images, and estimates
- Important provenance documentation
- May be print or digital format
see_also:
- AuctionHouse
- https://schema.org/PublicationIssue

View file

@ -1,15 +1,6 @@
id: https://nde.nl/ontology/hc/class/AudioEventSegment
name: audio_event_segment_class
title: Audio Event Segment Class
description: 'A temporal segment of audio containing a detected audio event (speech,
music, silence, etc.).
MIGRATED from audio_event_segments slot (Rule 53).
Uses generic has_segment slot with range narrowed to AudioEventSegment.
'
imports:
- linkml:types
- ../enums/AudioEventTypeEnum
@ -28,96 +19,119 @@ prefixes:
crm: http://www.cidoc-crm.org/cidoc-crm/
oa: http://www.w3.org/ns/oa#
ma: http://www.w3.org/ns/ma-ont#
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
classes:
AudioEventSegment:
class_uri: hc:AudioEventSegment
description: 'A temporal segment of audio containing a detected audio event.
**DEFINITION**:
AudioEventSegment represents a bounded temporal portion of audio content
where a specific type of audio event has been detected. This includes:
- Speech segments (with optional speaker/language info)
- Music segments (with optional genre/type info)
- Silence segments (gaps between audio)
- Sound event segments (applause, laughter, ambient sounds)
- Noise segments (for quality assessment)
**RELATIONSHIP TO VideoTimeSegment**:
AudioEventSegment is a specialized sibling of VideoTimeSegment:
- Both extend CIDOC-CRM E52_Time-Span concept
- VideoTimeSegment: general video temporal segments
- AudioEventSegment: audio-specific event segments
**AUDIO EVENT TYPES**:
| Event Type | Description | Example |
|------------|-------------|---------|
| SPEECH | Human speech detected | Interview segment |
| MUSIC | Music detected | Background soundtrack |
| SILENCE | Very low or no audio | Gap between segments |
| SOUND_EVENT | Non-speech/music sounds | Applause, footsteps |
| NOISE | Noise/interference | Quality issue marker |
| MIXED | Multiple event types | Overlapping audio |
**HERITAGE USE CASES**:
| Content Type | Application |
|--------------|-------------|
| Oral histories | Speech segment identification |
| Virtual tours | Background music detection |
| Lecture recordings | Audience reaction segments |
| Conservation videos | Narration vs ambient sound |
| Archival footage | Audio quality assessment |
**PROVENANCE**:
Created as part of slot migration (Rule 53) from deprecated
`audio_event_segments` slot to generic `has_segment` pattern.
'
exact_mappings:
- hc:AudioEventSegment
description: >-
Temporal segment of audio containing a detected audio event.
Represents a bounded temporal portion of audio content where a specific
type of audio event has been detected, including speech segments, music,
silence, sound events, and noise segments.
alt_descriptions:
nl:
text: >-
Tijdsegment van audio met een gedetecteerd audio-evenement.
Vertegenwoordigt een begrensd tijdsdeel van audio-inhoud waarbij een
specifiek type audio-evenement is gedetecteerd, inclusief spraaksegmenten,
muziek, stilte, geluidsevenementen en ruissegmenten.
de:
text: >-
Zeitliches Segment eines Audios mit einem erkannten Audioereignis.
Repräsentiert einen begrenzten zeitlichen Teil eines Audioinhalts, bei dem
ein bestimmter Audioereignistyp erkannt wurde, einschließlich Sprachsegmenten,
Musik, Stille, Schallereignissen und Rauschsegmenten.
fr:
text: >-
Segment temporel d'un audio contenant un événement audio détecté.
Représente une portion temporelle bornée d'un contenu audio où un type
spécifique d'événement audio a été détecté, y compris les segments de parole,
de musique, de silence, d'événements sonores et de bruit.
es:
text: >-
Segmento temporal de audio que contiene un evento de audio detectado.
Representa una porción temporal delimitada de contenido de audio donde se
ha detectado un tipo específico de evento de audio, incluyendo segmentos de
habla, música, silencio, eventos de sonido y segmentos de ruido.
ar:
text: >-
مقطع زمني للصوت يحتوي على حدث صوتي مكتشف.
يمثل جزءًا زمنيًا محددًا من محتوى صوتي حيث تم اكتشاف نوع محدد من
أحداث الصوت، بما في ذلك مقاطع الكلام والموسيقى والصمت وأحداث الصوت
ومقاطع الضوضاء.
id:
text: >-
Segmen temporal audio yang berisi peristiwa audio yang terdeteksi.
Mewakili bagian temporal terbatas dari konten audio di mana jenis peristiwa
audio tertentu telah terdeteksi, termasuk segmen ucapan, musik, keheningan,
peristiwa suara, dan segmen kebisingan.
zh:
text: >-
包含检测到的音频事件的音频时间片段。
表示检测到特定类型音频事件的音频内容的有限时间部分,
包括语音片段、音乐、静音、声音事件和噪声片段。
examples:
- value:
has_type: SPEECH
has_time_interval:
start_seconds: 0
end_seconds: 45
has_text: Welcome to the Rijksmuseum
has_score: 0.95
description: Speech segment with transcription
- value:
has_type: MUSIC
has_time_interval:
start_seconds: 45
end_seconds: 120
has_text: Classical background music
has_score: 0.88
description: Music segment detected
- value:
has_type: SILENCE
has_time_interval:
start_seconds: 120
end_seconds: 125
has_score: 0.99
description: Silence gap between segments
close_mappings:
- crm:E52_Time-Span
- ma:MediaFragment
related_mappings:
- oa:FragmentSelector
structured_aliases:
- literal_form: audio-evenementsegment
in_language: nl
- literal_form: audio-gebeurtenissegment
in_language: nl
- literal_form: Audioereignissegment
in_language: de
- literal_form: segment d'événement audio
in_language: fr
- literal_form: segmento de evento de audio
in_language: es
- literal_form: مقطع حدث صوتي
in_language: ar
- literal_form: segmen peristiwa audio
in_language: id
- literal_form: 音频事件片段
in_language: zh
keywords:
- audio event
- speech segment
- music detection
- silence detection
- audio analysis
- temporal segment
slots:
- has_time_interval
- indexed_as
@ -126,7 +140,6 @@ classes:
- has_type
- has_score
- begin_of_the_begin
- begin_of_the_begin
slot_usage:
has_type:
range: AudioEventTypeEnum
@ -134,14 +147,14 @@ classes:
examples:
- value: SPEECH
- value: MUSIC
- value: SILENCE
- value: SOUND_EVENT
- value: NOISE
has_time_interval:
range: TimeInterval
required: true
inlined: true
examples:
- value: null
has_text:
# range: string
required: false
examples:
- value: Welcome to the Rijksmuseum
@ -150,9 +163,6 @@ classes:
range: GenerationEvent
required: false
inlined: true
description: 'Generation event containing confidence score for audio event
detection. MIGRATED 2026-01-19: Replaces confidence slot with structured
pattern.'
examples:
- value:
has_score:
@ -163,10 +173,15 @@ classes:
- Temporal boundaries with start/end seconds (primary) and ISO 8601 (secondary)
- Confidence scoring for AI-generated detections
- Part of Rule 53 slot migration from audio_event_segments
- Audio types: SPEECH, MUSIC, SILENCE, SOUND_EVENT, NOISE, MIXED
see_also:
- https://www.w3.org/TR/media-frags/
- https://www.w3.org/ns/ma-ont
- TimeInterval
- GenerationEvent
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.55"
specificity_rationale: "AudioEventSegment is specific to audio analysis workflows in heritage digitization."
custodian_types: "['*']"
audio_event_types: "SPEECH, MUSIC, SILENCE, SOUND_EVENT, NOISE, MIXED"
heritage_use_cases: "Oral histories, virtual tours, lecture recordings, archival footage"

View file

@ -4,93 +4,162 @@ title: Audiovisual Archive Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
wd: http://www.wikidata.org/entity/
schema: http://schema.org/
dcterms: http://purl.org/dc/terms/
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
skos: http://www.w3.org/2004/02/skos/core#
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
rico: https://www.ica.org/standards/RiC/ontology#
imports:
- linkml:types
- ../slots/has_scope
- ../slots/has_score
- ../slots/has_type
- ../slots/hold_record_set
- ../slots/has_label
- ../slots/has_description
classes:
AudiovisualArchive:
is_a: ArchiveOrganizationType
class_uri: skos:Concept
class_uri: hc:AudiovisualArchive
description: >-
Archive specializing in audio-visual materials including film, video,
sound recordings, and multimedia content.
Preserves film and video recordings, sound recordings (music, spoken
word, oral history), multimedia productions, broadcast materials
(television, radio), born-digital audiovisual content, and related
documentation such as scripts and production files.
alt_descriptions:
nl:
text: >-
Archief gespecialiseerd in audiovisuele materialen waaronder film, video,
geluidsopnamen en multimedia-inhoud.
Bewaart film- en video-opnamen, geluidsopnamen (muziek, gesproken woord,
mondelinge geschiedenis), multimediaproducies, uitzendmaterialen (televisie,
radio), digitaal geboren audiovisuele inhoud en gerelateerde documentatie.
de:
text: >-
Archiv, spezialisiert auf audiovisuelle Materialien einschließlich Film, Video,
Tonaufnahmen und Multimedia-Inhalte.
Bewahrt Film- und Videoaufnahmen, Tonaufnahmen (Musik, gesprochenes Wort,
mündliche Geschichte), Multimedia-Produktionen, Rundfunkmaterialien (Fernsehen,
Radio), born-digitale audiovisuelle Inhalte und verwandte Dokumentation.
fr:
text: >-
Archives spécialisées dans les matériaux audiovisuels, y compris les films,
vidéos, enregistrements sonores et contenus multimédias.
Préserve les enregistrements filmiques et vidéo, les enregistrements sonores
(musique, parole, histoire orale), les productions multimédias, les matériaux
de diffusion (télévision, radio), le contenu audiovisuel numérique natif et
la documentation connexe.
es:
text: >-
Archivo especializado en materiales audiovisuales incluyendo películas, videos,
grabaciones de sonido y contenido multimedia.
Preserva grabaciones de cine y video, grabaciones de sonido (música, palabra
hablada, historia oral), producciones multimedia, materiales de transmisión
(televisión, radio), contenido audiovisual digital nativo y documentación relacionada.
ar:
text: >-
أرشيف متخصص في المواد السمعية البصرية بما في ذلك الأفلام والفيديو
والتسجيلات الصوتية والمحتوى متعدد الوسائط.
يحفظ تسجيلات الأفلام والفيديو والتسجيلات الصوتية (الموسيقى والكلمات المنطوقة
والتاريخ الشفوي) والإنتاجات متعددة الوسائط ومواد البث (التلفزيون والراديو)
والمحتوى السمعي البصري الرقمي الأصلي والوثائق ذات الصلة.
id:
text: >-
Arsip yang berspesialisasi dalam materi audiovisual termasuk film, video,
rekaman suara, dan konten multimedia.
Melestarikan rekaman film dan video, rekaman suara (musik, kata-kata,
sejarah lisan), produksi multimedia, materi siaran (TV, radio), konten
audiovisual digital asli, dan dokumentasi terkait.
zh:
text: >-
专门从事视听材料的档案,包括电影、视频、录音和多媒体内容。
保存电影和视频录像、录音(音乐、口语、口述历史)、多媒体作品、
广播材料(电视、广播)、原生数字视听内容和相关文档。
examples:
- value:
has_label: Nederlands Instituut voor Beeld en Geluid
has_type: hc:ArchiveOrganizationType
hold_record_set:
- hc:AudiovisualRecordingCollection
- hc:AudiovisualProductionFonds
description: Dutch audiovisual archive
exact_mappings:
- wd:Q27030766
close_mappings:
- schema:ArchiveOrganization
- rico:CorporateBody
broad_mappings:
- skos:Concept
related_mappings:
- wd:Q726929
- wd:Q2230431
- wd:Q109326243
- wd:Q109326271
structured_aliases:
- literal_form: audiovisueel archief
in_language: nl
- literal_form: beeld- en geluidarchief
in_language: nl
- literal_form: Audiovisuelles Archiv
in_language: de
- literal_form: Bild- und Tonarchiv
in_language: de
- literal_form: archives audiovisuelles
in_language: fr
- literal_form: archivo audiovisual
in_language: es
- literal_form: أرشيف سمعي بصري
in_language: ar
- literal_form: arsip audiovisual
in_language: id
- literal_form: 视听档案
in_language: zh
keywords:
- audiovisual archive
- film archive
- video archive
- sound archive
- broadcast archive
- media preservation
slots:
- hold_record_set
description: 'Archive specializing in audio-visual materials including film, video,
sound recordings, and multimedia content.
**Wikidata**: Q27030766
**Scope**:
Audiovisual archives preserve:
- Film and video recordings
- Sound recordings (music, spoken word, oral history)
- Multimedia productions
- Broadcast materials (television, radio)
- Born-digital audiovisual content
- Related documentation (scripts, production files)
**Preservation Challenges**:
- Format obsolescence (VHS, Betamax, reel-to-reel, etc.)
- Physical degradation (vinegar syndrome, sticky shed)
- Digital preservation requirements
- Large storage requirements
- Specialized playback equipment
**Related Types**:
- FilmArchive (Q726929) - Motion picture focus
- SoundArchive (Q2230431) - Audio recordings focus
- TelevisionArchive (Q109326243) - TV broadcast focus
- RadioArchive (Q109326271) - Radio broadcast focus
- MediaArchive (Q116809817) - Broader media preservation
**Notable Examples**:
- Nederlands Instituut voor Beeld en Geluid
- Library of Congress National Audio-Visual Conservation Center
- British Film Institute National Archive
- INA (Institut national de l''audiovisuel, France)
'
- has_scope
- has_score
- has_type
- has_label
- has_description
slot_usage:
hold_record_set:
# range: string
multivalued: true
examples:
- value: hc:AudiovisualRecordingCollection
- value: hc:AudiovisualProductionFonds
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.55"
specificity_rationale: "AudiovisualArchive is highly specific to media preservation archives."
custodian_types: "['AudiovisualArchive']"
wikidata_qid: "Q27030766"
related_types: "FilmArchive (Q726929), SoundArchive (Q2230431), TelevisionArchive (Q109326243), RadioArchive (Q109326271)"
preservation_challenges: "Format obsolescence, physical degradation, digital preservation, large storage requirements"
comments:
- Archive specializing in audiovisual materials
- Includes film, video, sound recordings, multimedia
- Major preservation challenges: format obsolescence, physical degradation
- Notable examples: Beeld en Geluid, BFI National Archive, INA
see_also:
- AudiovisualArchiveRecordSetType
- AudiovisualArchiveRecordSetTypes
- wd:Q726929
- wd:Q2230431

View file

@ -1,30 +1,119 @@
id: https://nde.nl/ontology/hc/class/AudiovisualArchiveRecordSetType
name: AudiovisualArchiveRecordSetType
title: AudiovisualArchive Record Set Type
title: Audiovisual Archive Record Set Type
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
wd: http://www.wikidata.org/entity/
skos: http://www.w3.org/2004/02/skos/core#
rico: https://www.ica.org/standards/RiC/ontology#
schema: http://schema.org/
imports:
- linkml:types
- ../slots/has_scope
- ../slots/has_score
- ../slots/has_type
- ../slots/has_label
- ../slots/has_description
classes:
AudiovisualArchiveRecordSetType:
description: 'A rico:RecordSetType for classifying collections held by AudiovisualArchive custodians.
'
class_uri: hc:AudiovisualArchiveRecordSetType
description: >-
Record set type classification for audiovisual archive collections.
Specialized rico:RecordSetType for classifying collections held by
AudiovisualArchive custodians, distinguishing between recording
collections, production records, and other audiovisual material types.
alt_descriptions:
nl:
text: >-
Recordsettype-classificatie voor audiovisuele archiefcollecties.
Gespecialiseerd rico:RecordSetType voor het classificeren van collecties
in bezit van AudiovisualArchive-beheerders.
de:
text: >-
Bestandstyp-Klassifikation für audiovisuelle Archivsammlungen.
Spezialisierter rico:RecordSetType zur Klassifizierung von Sammlungen
im Besitz von AudiovisualArchive-Verwaltern.
fr:
text: >-
Classification du type de fonds pour les collections d'archives audiovisuelles.
Rico:RecordSetType spécialisé pour classer les collections détenues par
les dépositaires AudiovisualArchive.
es:
text: >-
Clasificación de tipo de conjunto documental para colecciones de archivos audiovisuales.
Rico:RecordSetType especializado para clasificar colecciones en posesión
de custodios AudiovisualArchive.
ar:
text: >-
تصنيف نوع مجموعة السجلات لمجموعات الأرشيف السمعي البصري.
Rico:RecordSetType متخصص لتصنيف المجموعات التي يحتفظ بها أمناء AudiovisualArchive.
id:
text: >-
Klasifikasi tipe set rekaman untuk koleksi arsip audiovisual.
Rico:RecordSetType khusus untuk mengklasifikasikan koleksi yang dimiliki
pengelola AudiovisualArchive.
zh:
text: >-
视听档案收藏的记录集类型分类。
专门化的 rico:RecordSetType用于对视听档案保管人持有的收藏进行分类。
is_a: CollectionType
class_uri: rico:RecordSetType
broad_mappings:
- rico:RecordSetType
- skos:Concept
structured_aliases:
- literal_form: audiovisueelarchief-recordsettype
in_language: nl
- literal_form: Audiovisuellesarchiv-Bestandstyp
in_language: de
- literal_form: type de fonds d'archives audiovisuelles
in_language: fr
- literal_form: tipo de conjunto de archivo audiovisual
in_language: es
- literal_form: نوع مجموعة سجلات الأرشيف السمعي البصري
in_language: ar
- literal_form: tipe set rekaman arsip audiovisual
in_language: id
- literal_form: 视听档案记录集类型
in_language: zh
keywords:
- record set type
- audiovisual archive
- recording collection
- production records
- archival classification
slots:
- has_type
- has_score
- has_scope
see_also:
- AudiovisualArchive
- rico:RecordSetType
- has_label
- has_description
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
equals_string: "hc:ArchiveOrganizationType"
has_label:
required: false
examples:
- value: Audiovisual Recording Collection
- value: Audiovisual Production Fonds
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
specificity_score: "0.50"
specificity_rationale: "AudiovisualArchiveRecordSetType is specific to audiovisual archive classifications."
custodian_types: "['AudiovisualArchive']"
subclasses: "AudiovisualRecordingCollection, AudiovisualProductionFonds"
comments:
- Specialized record set type for audiovisual archives
- Subclasses include AudiovisualRecordingCollection, AudiovisualProductionFonds
- Part of dual-class pattern with AudiovisualArchive custodian type
see_also:
- AudiovisualArchive
- AudiovisualArchiveRecordSetTypes
- rico:RecordSetType

View file

@ -1,6 +1,6 @@
id: https://nde.nl/ontology/hc/class/AudiovisualArchiveRecordSetTypes
name: AudiovisualArchiveRecordSetTypes
title: AudiovisualArchive Record Set Type Subclasses
title: Audiovisual Archive Record Set Type Subclasses
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
@ -17,19 +17,64 @@ imports:
- ../slots/has_type
- ../slots/has_custodian
- ../slots/has_note
- ../slots/has_label
- ../slots/has_description
classes:
AudiovisualRecordingCollection:
is_a: AudiovisualArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for AV recordings.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
description: >-
Record set type for AV recordings.
RiC-O alignment: Specialized rico:RecordSetType following the collection
organizational principle as defined by rico-rst:Collection.
alt_descriptions:
nl:
text: Recordsettype voor audiovisuele opnamen.
de:
text: Bestandstyp für AV-Aufnahmen.
fr:
text: Type de fonds pour les enregistrements AV.
es:
text: Tipo de conjunto para grabaciones AV.
ar:
text: نوع مجموعة السجلات لتسجيلات AV.
id:
text: Tipe set rekaman untuk rekaman AV.
zh:
text: 视听录制的记录集类型。
examples:
- value:
has_label: Film Collection
has_type: hc:ArchiveOrganizationType
has_custodian: AudiovisualArchive
description: Film recording collection
broad_mappings:
- rico:RecordSetType
related_mappings:
- rico-rst:Collection
close_mappings:
- skos:Concept
structured_aliases:
- literal_form: av-opnamecollectie
in_language: nl
- literal_form: AV-Aufnahmesammlung
in_language: de
- literal_form: collection d'enregistrements AV
in_language: fr
- literal_form: colección de grabaciones AV
in_language: es
- literal_form: مجموعة تسجيلات AV
in_language: ar
- literal_form: koleksi rekaman AV
in_language: id
- literal_form: 视听录制收藏
in_language: zh
keywords:
- audiovisual recording
- film collection
- video archive
- sound recordings
see_also:
- AudiovisualArchiveRecordSetType
- rico:RecordSetType
@ -37,34 +82,78 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
- has_label
- has_description
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: AudiovisualRecordingCollection
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "AudiovisualRecordingCollection"
has_custodian:
equals_string: AudiovisualArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AudiovisualArchive
custodians. Inverse of rico:isOrWasHolderOf.
equals_string: "AudiovisualArchive"
has_note:
equals_string: "This RecordSetType is typically held by AudiovisualArchive custodians. Inverse of rico:isOrWasHolderOf."
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: '[''*'']'
specificity_score: "0.50"
specificity_rationale: "Specialized record set type for audiovisual recordings."
custodian_types: "['AudiovisualArchive']"
rico_organizational_principle: "Collection"
AudiovisualProductionFonds:
is_a: AudiovisualArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Media production records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the fonds \norganizational\
\ principle as defined by rico-rst:Fonds.\n"
description: >-
Record set type for media production records.
RiC-O alignment: Specialized rico:RecordSetType following the fonds
organizational principle as defined by rico-rst:Fonds.
alt_descriptions:
nl:
text: Recordsettype voor mediaproductie-records.
de:
text: Bestandstyp für Medienproduktionsunterlagen.
fr:
text: Type de fonds pour les documents de production média.
es:
text: Tipo de fondo para documentos de producción de medios.
ar:
text: نوع مجموعة السجلات لوثائق إنتاج الوسائط.
id:
text: Tipe set rekaman untuk catatan produksi media.
zh:
text: 媒体制作记录的记录集类型。
examples:
- value:
has_label: Television Production Fonds
has_type: hc:ArchiveOrganizationType
has_custodian: AudiovisualArchive
description: TV production records fonds
broad_mappings:
- rico:RecordSetType
related_mappings:
- rico-rst:Fonds
close_mappings:
- skos:Concept
structured_aliases:
- literal_form: av-productiefonds
in_language: nl
- literal_form: AV-Produktionsfonds
in_language: de
- literal_form: fonds de production AV
in_language: fr
- literal_form: fondo de producción AV
in_language: es
- literal_form: fonds إنتاج AV
in_language: ar
- literal_form: fonds produksi AV
in_language: id
- literal_form: 视听制作档案
in_language: zh
keywords:
- production records
- media production
- broadcast archives
- television production
see_also:
- AudiovisualArchiveRecordSetType
- rico:RecordSetType
@ -72,15 +161,20 @@ classes:
- has_type
- has_score
- has_custodian
- record_holder_note
- has_type
- has_note
- has_label
- has_description
slot_usage:
has_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
has_type:
equals_string: AudiovisualProductionFonds
any_of:
- equals_string: "hc:ArchiveOrganizationType"
- equals_string: "AudiovisualProductionFonds"
has_custodian:
equals_string: AudiovisualArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AudiovisualArchive
custodians. Inverse of rico:isOrWasHolderOf.
equals_string: "AudiovisualArchive"
has_note:
equals_string: "This RecordSetType is typically held by AudiovisualArchive custodians. Inverse of rico:isOrWasHolderOf."
annotations:
specificity_score: "0.50"
specificity_rationale: "Specialized record set type for media production records."
custodian_types: "['AudiovisualArchive']"
rico_organizational_principle: "Fonds"

View file

@ -1,27 +1,159 @@
id: https://nde.nl/ontology/hc/class/Audit
name: Audit
title: Audit
description: An official inspection of an organization's accounts or processes, typically by an independent body.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
prov: http://www.w3.org/ns/prov#
schema: http://schema.org/
default_prefix: hc
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/opiniate
- ../slots/conducted_by
- ../slots/temporal_extent
- ../slots/has_label
- ../slots/has_description
default_prefix: hc
classes:
Audit:
class_uri: prov:Activity
description: Audit event.
class_uri: hc:Audit
description: >-
Official inspection of an organization's accounts or processes.
Typically conducted by an independent body to verify accuracy of
financial records, compliance with regulations, or operational
effectiveness of heritage custodian activities.
alt_descriptions:
nl:
text: >-
Officiële inspectie van de administratie of processen van een organisatie.
Doorgaans uitgevoerd door een onafhankelijke instantie om de nauwkeurigheid
van financiële administratie, naleving van regelgeving of operationele
effectiviteit van erfgoedbeheerderactiviteiten te verifiëren.
de:
text: >-
Offizielle Prüfung der Konten oder Prozesse einer Organisation.
Wird typischerweise von einem unabhängigen Gremium durchgeführt, um die
Genauigkeit der Finanzunterlagen, die Einhaltung von Vorschriften oder die
operative Effektivität der Aktivitäten des Kulturgüterverwalters zu überprüfen.
fr:
text: >-
Inspection officielle des comptes ou des processus d'une organisation.
Généralement menée par un organe indépendant pour vérifier l'exactitude
des documents financiers, la conformité aux réglementations ou l'efficacité
opérationnelle des activités du dépositaire du patrimoine.
es:
text: >-
Inspección oficial de las cuentas o procesos de una organización.
Por lo general realizada por un organismo independiente para verificar la
exactitud de los registros financieros, el cumplimiento de las normativas
o la eficacia operativa de las actividades del custodio del patrimonio.
ar:
text: >-
تفتيش رسمي لحسابات أو عمليات المنظمة.
يجريه عادة جهة مستقلة للتحقق من دقة السجلات المالية والامتثال
للوائح أو الفعالية التشغيلية لأنشطة أمين التراث.
id:
text: >-
Inspeksi resmi akun atau proses organisasi.
Biasanya dilakukan oleh badan independen untuk memverifikasi keakuratan
catatan keuangan, kepatuhan terhadap peraturan, atau efektivitas operasional
aktivitas pengelola warisan.
zh:
text: >-
对组织账目或流程的正式检查。
通常由独立机构进行,以验证财务记录的准确性、法规合规性或
遗产保管人活动的运营有效性。
examples:
- value:
has_label: 2024 Financial Audit
temporal_extent:
begin_of_the_begin: '2024-01-01'
end_of_the_end: '2024-12-31'
conducted_by: PwC
description: Annual financial audit
- value:
has_label: Collection Management Audit
has_description: Review of collection documentation and procedures
conducted_by: Internal Audit Committee
description: Operational audit
close_mappings:
- prov:Activity
- schema:AssessAction
broad_mappings:
- skos:Concept
structured_aliases:
- literal_form: audit
in_language: nl
- literal_form: controle
in_language: nl
- literal_form: Prüfung
in_language: de
- literal_form: Revision
in_language: de
- literal_form: audit
in_language: fr
- literal_form: vérification
in_language: fr
- literal_form: auditoría
in_language: es
- literal_form: تدقيق
in_language: ar
- literal_form: pemeriksaan
in_language: id
- literal_form: 审计
in_language: zh
keywords:
- audit
- inspection
- verification
- compliance
- financial review
- assessment
slots:
- temporal_extent
- opiniate
- conducted_by
- has_label
- has_description
slot_usage:
temporal_extent:
range: TimeSpan
required: false
examples:
- value:
begin_of_the_begin: '2024-01-01'
end_of_the_end: '2024-12-31'
conducted_by:
required: false
examples:
- value: PwC
- value: Internal Audit Committee
opiniate:
range: AuditOpinion
required: false
has_label:
required: false
examples:
- value: 2024 Financial Audit
- value: Collection Management Audit
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.35"
specificity_rationale: "Audit is moderately specific to organizational oversight and compliance."
custodian_types: "['*']"
audit_types: "Financial audit, Compliance audit, Operational audit, Collection audit"
comments:
- Official inspection of accounts or processes
- May be financial, compliance, or operational
- Results in audit opinion
see_also:
- AuditOpinion
- Auditor

View file

@ -1,24 +1,140 @@
id: https://nde.nl/ontology/hc/class/AuditOpinion
name: AuditOpinion
title: AuditOpinion
description: The opinion or conclusion drawn from an audit (e.g., Unqualified, Qualified, Adverse).
title: Audit Opinion
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
default_prefix: hc
crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
- ../slots/has_description
- ../slots/has_label
default_prefix: hc
classes:
AuditOpinion:
class_uri: skos:Concept
description: Audit opinion.
class_uri: hc:AuditOpinion
description: >-
Opinion or conclusion drawn from an audit.
Professional judgment expressed by auditors regarding the accuracy,
completeness, and compliance of audited records. Standard opinions
include Unqualified (clean), Qualified, Adverse, and Disclaimer.
alt_descriptions:
nl:
text: >-
Mening of conclusie getrokken uit een audit.
Professioneel oordeel uitgesproken door auditors over de nauwkeurigheid,
volledigheid en naleving van gecontroleerde administratie. Standaard meningen
zijn Onbeperkt (schoon), Beperkt, Afkeurend en Weigering.
de:
text: >-
Meinung oder Schlussfolgerung aus einer Prüfung.
Professionelles Urteil, das von Prüfern über die Genauigkeit, Vollständigkeit
und Konformität der geprüften Unterlagen abgegeben wird. Standardmeinungen
sind Uneingeschränkt (sauber), Einschränkung, Ablehnend und Verweigerung.
fr:
text: >-
Opinion ou conclusion tirée d'un audit.
Jugement professionnel exprimé par les auditeurs concernant l'exactitude,
l'exhaustivité et la conformité des documents audités. Les opinions standards
sont Sans réserve (propre), Avec réserve, Défavorable et Refus d'opinion.
es:
text: >-
Opinión o conclusión extraída de una auditoría.
Juicio profesional expresado por los auditores sobre la exactitud, integridad
y cumplimiento de los registros auditados. Las opiniones estándar son Sin
salvedades (limpia), Con salvedades, Adversa y Denegación.
ar:
text: >-
رأي أو استنتاج مستخلص من التدقيق.
حكم مهني يبديه المدققون بشأن دقة واكتمال الامتثال للسجلات المدققة.
الآراء القياسية هي غير مشروطة (نظيفة) ومشروطة وسلبية ورفض إبداء الرأي.
id:
text: >-
Pendapat atau kesimpulan dari audit.
Penilaian profesional yang dinyatakan oleh auditor mengenai akurasi,
kelengkapan, dan kepatuhan catatan yang diaudit. Opini standar adalah
Tanpa pengecualian (bersih), Dengan pengecualian, Adverse, dan Disclaimer.
zh:
text: >-
从审计中得出的意见或结论。
审计师对被审计记录的准确性、完整性和合规性表达的专业判断。
标准意见包括无保留(干净)、保留、否定和拒绝表示意见。
examples:
- value:
has_label: Unqualified Opinion
has_description: Financial statements present fairly in all material respects
description: Clean audit opinion
- value:
has_label: Qualified Opinion
has_description: Except for certain matters, financial statements are fairly presented
description: Qualified audit opinion
- value:
has_label: Adverse Opinion
has_description: Financial statements do not present fairly due to material misstatements
description: Negative audit opinion
broad_mappings:
- skos:Concept
- crm:E55_Type
structured_aliases:
- literal_form: auditoordeel
in_language: nl
- literal_form: controleoordeel
in_language: nl
- literal_form: Prüfungsvermerk
in_language: de
- literal_form: Bestätigungsvermerk
in_language: de
- literal_form: opinion d'audit
in_language: fr
- literal_form: opinión de auditoría
in_language: es
- literal_form: رأي التدقيق
in_language: ar
- literal_form: opini audit
in_language: id
- literal_form: 审计意见
in_language: zh
keywords:
- audit opinion
- unqualified
- qualified
- adverse
- disclaimer
- auditor judgment
slots:
- has_label
- has_description
slot_usage:
has_label:
required: true
examples:
- value: Unqualified Opinion
- value: Qualified Opinion
- value: Adverse Opinion
- value: Disclaimer of Opinion
has_description:
required: false
examples:
- value: Financial statements present fairly in all material respects
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.40"
specificity_rationale: "AuditOpinion is specific to professional audit standards."
custodian_types: "['*']"
standard_opinions: "Unqualified, Qualified, Adverse, Disclaimer"
comments:
- Professional conclusion from audit
- Standard types: Unqualified, Qualified, Adverse, Disclaimer
- Unqualified (clean) = records are accurate and compliant
- Adverse = material misstatements found
see_also:
- Audit
- Auditor

View file

@ -1,22 +1,146 @@
id: https://nde.nl/ontology/hc/class/Auditor
name: Auditor
title: Auditor
description: A person or organization authorized to review and verify the accuracy of financial records.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
default_prefix: hc
skos: http://www.w3.org/2004/02/skos/core#
prov: http://www.w3.org/ns/prov#
imports:
- linkml:types
- ../slots/has_name
- ../slots/has_description
default_prefix: hc
classes:
Auditor:
class_uri: schema:Organization
description: Auditor entity.
class_uri: hc:Auditor
description: >-
Person or organization authorized to review and verify financial records.
Independent professional or firm qualified to examine organizational
accounts, assess compliance, and express audit opinions on financial
statements or operational procedures.
alt_descriptions:
nl:
text: >-
Persoon of organisatie gemachtigd om financiële administratie te
beoordelen en te verifiëren.
Onafhankelijke professional of bedrijf dat bevoegd is om organisatie-
administratie te onderzoeken, naleving te beoordelen en auditoordeel
uit te spreken over jaarrekeningen of operationele procedures.
de:
text: >-
Person oder Organisation, die berechtigt ist, Finanzunterlagen zu
überprüfen und zu verifizieren.
Unabhängiger Profi oder Firma, die qualifiziert ist, Organisationskonten
zu prüfen, Compliance zu bewerten und Prüfungsmeinungen zu Finanzberichten
oder betrieblichen Verfahren abzugeben.
fr:
text: >-
Personne ou organisation autorisée à examiner et vérifier les documents financiers.
Professionnel indépendant ou cabinet qualifié pour examiner les comptes
organisationnels, évaluer la conformité et exprimer des opinions d'audit
sur les états financiers ou les procédures opérationnelles.
es:
text: >-
Persona u organización autorizada para revisar y verificar registros financieros.
Profesional independiente o firma calificada para examinar cuentas
organizacionales, evaluar el cumplimiento y expresar opiniones de auditoría
sobre estados financieros o procedimientos operativos.
ar:
text: >-
شخص أو منظمة مخولة لمراجعة والتحقق من السجلات المالية.
محترف مستقل أو شركة مؤهلة لفحص الحسابات التنظيمية وتقييم الامتثال
وإبداء آراء التدقيق حول البيانات المالية أو الإجراءات التشغيلية.
id:
text: >-
Orang atau organisasi yang berwenang untuk meninjau dan memverifikasi catatan keuangan.
Profesional independen atau firma yang berkualifikasi untuk memeriksa akun
organisasi, menilai kepatuhan, dan menyatakan opini audit tentang laporan
keuangan atau prosedur operasional.
zh:
text: >-
被授权审查和核实财务记录的人员或组织。
有资格审查组织账目、评估合规性并对财务报表或运营程序表达审计意见的
独立专业人员或公司。
examples:
- value:
has_name: PwC
has_description: Big Four accounting firm providing audit services
description: External audit firm
- value:
has_name: Deloitte
has_description: International professional services network
description: International auditor
- value:
has_name: Internal Audit Department
has_description: In-house audit function
description: Internal auditor
close_mappings:
- schema:Organization
- prov:Agent
broad_mappings:
- skos:Concept
structured_aliases:
- literal_form: accountant
in_language: nl
- literal_form: auditor
in_language: nl
- literal_form: Wirtschaftsprüfer
in_language: de
- literal_form: Prüfer
in_language: de
- literal_form: auditeur
in_language: fr
- literal_form: auditor
in_language: es
- literal_form: مدقق حسابات
in_language: ar
- literal_form: auditor
in_language: id
- literal_form: 审计师
in_language: zh
keywords:
- auditor
- accountant
- financial review
- compliance
- verification
- independent examiner
slots:
- has_name
- has_description
slot_usage:
has_name:
required: true
examples:
- value: PwC
- value: Deloitte
- value: KPMG
- value: Internal Audit Department
has_description:
required: false
examples:
- value: Big Four accounting firm providing audit services
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
specificity_score: "0.35"
specificity_rationale: "Auditor is moderately specific to financial oversight and compliance."
custodian_types: "['*']"
auditor_types: "External auditor, Internal auditor, Government auditor"
big_four: "PwC, Deloitte, KPMG, EY"
comments:
- Person or organization conducting audits
- May be external firm or internal department
- Must be independent and qualified
- Big Four firms: PwC, Deloitte, KPMG, EY
see_also:
- Audit
- AuditOpinion