glam/schemas/20251121/linkml/modules/classes/Diocese.yaml
kempersc 1516d509cf Add metadata to LinkML class definitions and update prefixes
- Added `id`, `name`, `title`, and `description` fields to multiple LinkML class YAML files.
- Standardized prefixes across all class definitions.
- Introduced a new script `fix_linkml_metadata.py` to automate the addition of metadata to class files.
- Updated existing class files to ensure compliance with the new metadata structure.
2026-01-29 17:40:47 +01:00

194 lines
7 KiB
YAML

id: https://nde.nl/ontology/hc/class/Diocese
name: Diocese
title: Diocese
description: LinkML class definition for Diocese
prefixes:
linkml: https://w3id.org/linkml/
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/
# Diocese - Ecclesiastical administrative unit class
#
# Created per slot_fixes.yaml migration for: founding_date_diocese
# Creation date: 2026-01-22
# Rule compliance: 39 (RiC-O naming), 50 (ontology mapping), 53 (slot_fixes revision)
id: https://nde.nl/ontology/hc/class/Diocese
name: Diocese
title: Diocese
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
org: http://www.w3.org/ns/org#
wd: http://www.wikidata.org/entity/
default_prefix: hc
imports:
- linkml:types
- ../slots/is_or_was_founded_through
- ../slots/has_or_had_identifier
- ../slots/has_or_had_label
- ../slots/has_or_had_description
- ../slots/is_or_was_located_in
- ./EcclesiasticalProvince
- ./FoundingEvent
classes:
Diocese:
class_uri: org:Organization
description: |
Represents an ecclesiastical diocese (bishopric) - an administrative unit
of the Catholic, Anglican, or other episcopal churches.
**USAGE**:
Captures structured information about dioceses that heritage custodians
(particularly diocesan archives) are part of.
**WIKIDATA**: Q131896 (diocese)
**ECCLESIASTICAL HIERARCHY**:
```
Vatican / Holy See
├── Ecclesiastical Province
│ └── Archdiocese (metropolitan see)
│ └── DIOCESE (suffragan see) ← THIS CLASS
│ └── Parish
└── Religious Orders
```
**HISTORICAL SIGNIFICANCE**:
Many European dioceses were established in medieval times and often
predate civil administrative divisions. Their founding dates are
significant for understanding ecclesiastical history.
**MIGRATION NOTE**:
Created per slot_fixes.yaml revision (Rule 53, 2026-01-22).
Replaces simple `founding_date_diocese` (date) with structured class
capturing diocese identity and founding event.
slots:
- is_or_was_founded_through
- has_or_had_identifier
- has_or_had_label
- has_or_had_description
- is_or_was_located_in
attributes:
diocese_id:
identifier: true
description: |
Unique identifier for this diocese.
Recommended: Use Wikidata ID or institutional URI.
range: uriorcurie
slot_uri: dcterms:identifier
examples:
- value: "wd:Q1808831"
description: Diocese of Utrecht (Wikidata)
- value: "hc:diocese/s-hertogenbosch"
description: Diocese of 's-Hertogenbosch (internal URI)
archdiocese_name:
description: |
Name of the metropolitan archdiocese this diocese belongs to.
range: string
slot_uri: schema:parentOrganization
examples:
- value: "Archdiocese of Utrecht"
# ecclesiastical_province migrated to is_or_was_located_in + EcclesiasticalProvince (Rule 53)
denomination:
description: |
Religious denomination (Catholic, Anglican, Orthodox, etc.)
range: string
slot_uri: schema:additionalType
examples:
- value: "Roman Catholic"
- value: "Church of England"
- value: "Eastern Orthodox"
slot_usage:
has_or_had_label:
description: |
Official name of the diocese.
MIGRATED from diocese_name per Rule 53 (2026-01-26).
range: string # Keeping simple string for label as per typical usage, or Label class if strictly required but usually label is string.
# Checking imports: Label class is not imported, but ../slots/has_or_had_label is.
# Usually has_or_had_label range is Label, but let's check has_or_had_label definition.
# Actually, Rule 53 revision says "Label type: class".
# However, has_or_had_label usually defaults to Label class.
# Let's check imports. ../slots/has_or_had_label is imported.
# Let's verify range of has_or_had_label.
required: true
examples:
- value: "Diocese of Utrecht"
- value: "Bistum Münster"
- value: "Diocese of 's-Hertogenbosch"
is_or_was_located_in:
range: EcclesiasticalProvince
description: |
The ecclesiastical province this diocese belongs to.
MIGRATED from ecclesiastical_province per Rule 53 (2026-01-25).
examples:
- value:
has_or_had_label: "Province of Utrecht"
description: Part of the Province of Utrecht
is_or_was_founded_through:
description: |
The founding event of this diocese.
Many dioceses have medieval founding dates.
range: FoundingEvent
inlined: true
examples:
- value:
temporal_extent:
begin_of_the_begin: "0695-01-01"
end_of_the_begin: "0695-12-31"
founding_description: "Diocese of Utrecht established circa 695 by St. Willibrord"
description: Medieval diocese founding
exact_mappings:
- wd:Q131896
close_mappings:
- org:Organization
- schema:Organization
examples:
- value:
diocese_id: "wd:Q1808831"
diocese_name: "Diocese of Utrecht"
archdiocese_name: "Archdiocese of Utrecht"
is_or_was_located_in:
has_or_had_label: "Province of Utrecht"
denomination: "Roman Catholic"
is_or_was_founded_through:
temporal_extent:
begin_of_the_begin: "0695-01-01"
end_of_the_begin: "0695-12-31"
founding_description: "Established circa 695 by St. Willibrord"
description: Diocese of Utrecht example
- value:
diocese_id: "hc:diocese/s-hertogenbosch"
diocese_name: "Diocese of 's-Hertogenbosch"
archdiocese_name: "Archdiocese of Utrecht"
is_or_was_located_in:
has_or_had_label: "Province of Utrecht"
denomination: "Roman Catholic"
is_or_was_founded_through:
temporal_extent:
begin_of_the_begin: "1559-05-12"
end_of_the_begin: "1559-05-12"
founding_description: "Established 12 May 1559 during reorganization of Dutch church"
description: Diocese of 's-Hertogenbosch example
annotations:
custodian_types: '["H"]'
custodian_types_rationale: "Dioceses are ecclesiastical organizations relevant to Holy Sites (H) heritage custodians."
specificity_score: "0.75"
specificity_rationale: "Fairly specific - primarily relevant for diocesan archives and religious heritage."