diff --git a/.opencode/rules/ontology-to-linkml-mapping-convention.md b/.opencode/rules/ontology-to-linkml-mapping-convention.md
index b67c79393d..ec73290252 100644
--- a/.opencode/rules/ontology-to-linkml-mapping-convention.md
+++ b/.opencode/rules/ontology-to-linkml-mapping-convention.md
@@ -34,12 +34,44 @@ These properties express **semantic relationships** to external ontology terms:
| Property | SKOS Predicate | Meaning | Use When |
|----------|---------------|---------|----------|
-| `exact_mappings` | `skos:exactMatch` | Identical meaning | Different ontology, same semantics |
-| `close_mappings` | `skos:closeMatch` | Very similar meaning | Similar but not interchangeable |
+| `exact_mappings` | `skos:exactMatch` | **IDENTICAL meaning** | Different ontology, **SAME semantics** (interchangeable) |
+| `close_mappings` | `skos:closeMatch` | Very similar meaning | Similar but **NOT interchangeable** |
| `related_mappings` | `skos:relatedMatch` | Semantically related | Broader conceptual relationship |
| `narrow_mappings` | `skos:narrowMatch` | This is more specific | External term is broader |
| `broad_mappings` | `skos:broadMatch` | This is more general | External term is narrower |
+### ⚠️ CRITICAL: `exact_mappings` Requires PRECISE Semantic Equivalence
+
+**`exact_mappings` means the terms are INTERCHANGEABLE** - you could substitute one for the other in any context without changing meaning.
+
+**Requirements for `exact_mappings`**:
+1. **Same definition**: Both terms must have equivalent definitions
+2. **Same scope**: Both terms cover the same set of instances
+3. **Same constraints**: Same domain/range restrictions apply
+4. **Bidirectional**: If A exactMatch B, then B exactMatch A
+
+**DO NOT use `exact_mappings` when**:
+- One term is a subset of the other (use `narrow_mappings`/`broad_mappings`)
+- Terms are similar but have different scopes (use `close_mappings`)
+- Terms are related but not equivalent (use `related_mappings`)
+- You're uncertain about equivalence (default to `close_mappings`)
+
+**Example - WRONG**:
+```yaml
+# PersonProfile is NOT equivalent to foaf:Person
+# PersonProfile is a structured document ABOUT a person, not the person themselves
+exact_mappings:
+ - foaf:Person # ❌ WRONG - different semantics!
+```
+
+**Example - CORRECT**:
+```yaml
+# foaf:Person and schema:Person ARE equivalent
+# Both define "a person" with the same scope
+exact_mappings:
+ - schema:Person # ✅ CORRECT - truly equivalent
+```
+
---
## 3. Mapping Workflow: Ontology → LinkML
diff --git a/frontend/public/schemas/20251121/linkml/manifest.json b/frontend/public/schemas/20251121/linkml/manifest.json
index 0ba25d518e..4f92efa87a 100644
--- a/frontend/public/schemas/20251121/linkml/manifest.json
+++ b/frontend/public/schemas/20251121/linkml/manifest.json
@@ -1,5 +1,5 @@
{
- "generated": "2026-01-12T17:31:31.920Z",
+ "generated": "2026-01-13T00:48:37.685Z",
"schemaRoot": "/schemas/20251121/linkml",
"totalFiles": 2886,
"categoryCounts": {
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml
index 68431d7a67..8cbce2f105 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml
@@ -21,7 +21,20 @@ default_range: string
classes:
AdmissionInfo:
- description: Structured admission price information from Google Maps
+ description: >-
+ Structured admission price information from Google Maps including
+ price value and notes about additional fees or conditions.
+
+ Ontology mapping rationale:
+ - class_uri is schema:PriceSpecification because this represents
+ structured price information for museum/institution admission
+ - close_mappings includes schema:Offer for commercial offering context
+ - related_mappings includes schema:MonetaryAmount for price values
+ class_uri: schema:PriceSpecification
+ close_mappings:
+ - schema:Offer
+ related_mappings:
+ - schema:MonetaryAmount
attributes:
price:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/AlternativeName.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/AlternativeName.yaml
index 82eaec96a5..0876904247 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/AlternativeName.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/AlternativeName.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
AlternativeName:
- description: Alternative name with language and source information
+ description: >-
+ Alternative name with language and source information, representing
+ a variant or translated form of an institution's name.
+
+ Ontology mapping rationale:
+ - class_uri is skos:altLabel because this represents an alternative
+ lexical label for a concept (the institution)
+ - exact_mappings includes schema:alternateName as both represent variant names
+ - related_mappings includes rdfs:label for general labeling context
+ class_uri: skos:altLabel
+ exact_mappings:
+ - schema:alternateName
+ related_mappings:
+ - rdfs:label
attributes:
name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml
index 632b01237f..1c24ff2e44 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
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#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
ArchiveInfo:
- description: Archive reference
+ description: >-
+ Archive reference containing basic information about an archival
+ institution including name, website, and ISIL identifier.
+
+ Ontology mapping rationale:
+ - class_uri is rico:Agent because archives are agents that create,
+ maintain, and provide access to records (RiC-O archival ontology)
+ - close_mappings includes schema:ArchiveOrganization for Schema.org alignment
+ - related_mappings includes prov:Agent for provenance agent role
+ class_uri: rico:Agent
+ close_mappings:
+ - schema:ArchiveOrganization
+ related_mappings:
+ - prov:Agent
attributes:
name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/CareerEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/CareerEntry.yaml
index 3d69aa7970..8da68164b9 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/CareerEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/CareerEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
CareerEntry:
- description: Career history entry
+ description: >-
+ Career history entry representing a single job position in a person's employment history.
+ Contains job title, company, location, dates, duration, and description of the role.
+ This represents observed employment data extracted from a profile source.
+
+ Ontology mapping rationale:
+ - class_uri is org:Membership because this represents a relationship between a person
+ and an organization with a specific role, which is precisely what org:Membership models
+ - close_mappings includes schema:OrganizationRole as Schema.org's approach to
+ representing a person's role in an organization
+ - related_mappings includes org:Role (the abstract role) and prov:Entity (participates
+ in provenance chains as extracted data)
+ class_uri: org:Membership
+ close_mappings:
+ - schema:OrganizationRole
+ related_mappings:
+ - org:Role
+ - prov:Entity
attributes:
title:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml
index 02e1e6b26e..035b452ec5 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -21,7 +23,23 @@ default_range: string
classes:
ChAnnotatorAnnotationMetadata:
- description: Metadata about the annotation
+ description: >-
+ Metadata about the CH-Annotator annotation including confidence scores,
+ verification status, and quality metrics.
+
+ Ontology mapping rationale:
+ - class_uri is oa:Annotation because this represents metadata about an
+ annotation following the W3C Web Annotation Data Model.
+ - close_mappings includes dqv:QualityAnnotation because it captures
+ quality-related metadata (confidence, verification).
+ - related_mappings includes prov:Entity as the annotation metadata itself
+ is a provenance-tracked entity.
+ class_uri: oa:Annotation
+ close_mappings:
+ - dqv:QualityAnnotation
+ related_mappings:
+ - prov:Entity
+ - schema:Rating
attributes:
confidence_score:
range: float
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml
index 544ac6358b..8c700e048a 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +23,22 @@ default_range: string
classes:
ChAnnotatorAnnotationProvenance:
- description: Provenance for the annotation process
+ description: >-
+ Provenance information for the CH-Annotator annotation process,
+ tracking who/what created the annotation, when, and how.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Activity because annotation is an activity that
+ generates annotations from source data.
+ - close_mappings includes pav:Authoring to capture the creative aspect
+ of annotation as an authoring process.
+ - related_mappings includes oa:Annotation as the target of this provenance.
+ class_uri: prov:Activity
+ close_mappings:
+ - pav:Authoring
+ related_mappings:
+ - oa:Annotation
+ - prov:Agent
attributes:
annotation_agent:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml
index b46a80e755..75be09c615 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
imports:
- linkml:types
@@ -27,7 +28,24 @@ default_range: string
classes:
ChAnnotatorBlock:
- description: CH-Annotator convention metadata and entity claims
+ description: >-
+ Container for CH-Annotator convention metadata and entity claims,
+ representing a complete annotation block following the CH-Annotator
+ convention (e.g., ch_annotator-v1_7_0).
+
+ Ontology mapping rationale:
+ - class_uri is prov:Collection because this aggregates multiple
+ annotation-related entities (claims, provenance, metadata).
+ - close_mappings includes oa:Annotation as it represents annotation
+ content following the Web Annotation model.
+ - related_mappings includes prov:Bundle as a related concept for
+ packaging provenance information.
+ class_uri: prov:Collection
+ close_mappings:
+ - oa:Annotation
+ related_mappings:
+ - prov:Bundle
+ - schema:Dataset
attributes:
convention_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml
index 89e2f63fe0..fe0bb11980 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
imports:
- linkml:types
@@ -23,7 +25,24 @@ default_range: string
classes:
ChAnnotatorEntityClaim:
- description: Individual claim about an entity
+ description: >-
+ Individual claim about an entity extracted using CH-Annotator convention.
+ Each claim represents an assertion about an entity attribute with
+ associated provenance and confidence information.
+
+ Ontology mapping rationale:
+ - class_uri is rdf:Statement because a claim is fundamentally an
+ RDF-like statement (subject-predicate-object assertion).
+ - close_mappings includes oa:Annotation as claims are a form of
+ annotation body content.
+ - related_mappings includes prov:Entity as claims are provenance-tracked
+ entities themselves.
+ class_uri: rdf:Statement
+ close_mappings:
+ - oa:Annotation
+ related_mappings:
+ - prov:Entity
+ - schema:PropertyValue
attributes:
claim_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml
index c3ba0721dd..25a5cc386e 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ oa: http://www.w3.org/ns/oa#
imports:
- linkml:types
@@ -23,7 +25,24 @@ default_range: string
classes:
ChAnnotatorEntityClassification:
- description: Entity classification in CH-Annotator taxonomy
+ description: >-
+ Entity classification in the CH-Annotator taxonomy, capturing hypernym
+ types (GRP, AGT, TOP, etc.) and subtypes (GRP.HER.ARC, GRP.HER.MUS).
+ Maps entities to the GLAMORCUBESFIXPHDNT heritage custodian taxonomy.
+
+ Ontology mapping rationale:
+ - class_uri is skos:Concept because entity classification represents
+ a conceptual categorization within the CH-Annotator taxonomy.
+ - close_mappings includes oa:classifying as the annotation motivation
+ for classification activities.
+ - related_mappings includes prov:Entity and schema:CategoryCode as
+ related concepts for typed categorization.
+ class_uri: skos:Concept
+ close_mappings:
+ - oa:classifying
+ related_mappings:
+ - prov:Entity
+ - schema:CategoryCode
attributes:
hypernym:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml
index 2e38eacc6d..8e2dbd4190 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
ChAnnotatorIntegrationNote:
- description: Note about how the file was created/integrated
+ description: >-
+ Note about how a file was created or integrated into the dataset,
+ documenting the source file, creation method, and integration process.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Derivation because integration notes describe how
+ data was derived from source files through transformation.
+ - close_mappings includes pav:importedFrom to capture the source-to-target
+ relationship in data integration.
+ - related_mappings includes prov:Activity as integration is an activity.
+ class_uri: prov:Derivation
+ close_mappings:
+ - pav:importedFrom
+ related_mappings:
+ - prov:Activity
+ - prov:Entity
attributes:
created_from:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml
index b36a6c785b..412ef2e556 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml
@@ -21,7 +21,23 @@ default_range: string
classes:
ChAnnotatorModel:
- description: Annotator model information
+ description: >-
+ Information about the annotator model used for CH-Annotator extraction,
+ including the model name (e.g., glm-4.5-flash), convention identifier,
+ and annotation timestamp.
+
+ Ontology mapping rationale:
+ - class_uri is prov:SoftwareAgent because the annotator model is a
+ software agent that performs annotation activities.
+ - close_mappings includes schema:SoftwareApplication as the model
+ is a software application.
+ - related_mappings includes prov:Agent as the broader agent concept.
+ class_uri: prov:SoftwareAgent
+ close_mappings:
+ - schema:SoftwareApplication
+ related_mappings:
+ - prov:Agent
+ - prov:Entity
attributes:
model:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
index a1f3e0a125..2e0a39f02c 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
ChAnnotatorProvenance:
- description: Provenance information for CH-Annotator extraction
+ description: >-
+ Provenance information for CH-Annotator extraction, tracking the
+ namespace, path/XPath to source data, timestamp, agent, and convention
+ used for extraction.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because provenance information is itself
+ an entity that can be referenced and tracked.
+ - close_mappings includes pav:SourceAccessedAt as it captures access
+ to source data during extraction.
+ - related_mappings includes prov:Generation as extraction generates
+ new data from sources.
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - prov:Generation
+ - prov:Activity
attributes:
namespace:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml
index 0568b92f4b..bdf23293ea 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
CoordinateProvenance:
- description: Provenance of coordinates
+ description: >-
+ Provenance of coordinates tracking the source, method, and metadata
+ for how geographic coordinates were obtained or resolved.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents provenance metadata
+ about a coordinate value (the coordinate source as an entity)
+ - close_mappings includes geo:Point for the coordinate data aspect
+ - related_mappings includes prov:Activity for the resolution activity
+ class_uri: prov:Entity
+ close_mappings:
+ - geo:Point
+ related_mappings:
+ - prov:Activity
attributes:
source_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/Coordinates.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/Coordinates.yaml
index 104bea8c2a..a5363e2d38 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/Coordinates.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/Coordinates.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
+ sf: http://www.opengis.net/ont/sf#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
Coordinates:
- description: Geographic coordinates
+ description: >-
+ Geographic coordinates representing a point location with latitude and longitude
+ (and optional precision). Used to locate heritage custodians, events, and other
+ geographically situated entities.
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point from WGS84 vocabulary, the standard for representing
+ points on Earth with lat/long coordinates
+ - close_mappings includes sf:Point from OGC Simple Features as an alternative
+ geometry representation
+ - related_mappings includes geo:SpatialThing (superclass) and schema:GeoCoordinates
+ as Schema.org's coordinate representation
+ class_uri: geo:Point
+ close_mappings:
+ - sf:Point
+ related_mappings:
+ - geo:SpatialThing
+ - schema:GeoCoordinates
attributes:
latitude:
range: float
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml
index f3a521140e..0e36f6fddd 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
CustodianLegalNameClaim:
- description: Legal name claim with provenance
+ description: >-
+ Legal name claim with provenance, representing an assertion about
+ an institution's official registered legal name with extraction metadata.
+
+ Ontology mapping rationale:
+ - class_uri is rdf:Statement because this represents a reified claim
+ (statement about a statement) with provenance metadata
+ - close_mappings includes prov:Entity as the claim itself is an entity
+ - related_mappings includes schema:legalName for the semantic content
+ class_uri: rdf:Statement
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - schema:legalName
attributes:
claim_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml
index 423392bf93..d5e68adaa4 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
@@ -25,7 +26,21 @@ default_range: string
classes:
CustodianNameConsensus:
- description: Consensus determination of custodian name
+ description: >-
+ Consensus determination of custodian name aggregating evidence from multiple
+ sources with confidence scoring, including emic/standardized forms, alternative
+ names, and former names.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents a derived data entity
+ resulting from consensus analysis across multiple sources
+ - close_mappings includes skos:Concept as it establishes a canonical naming
+ - related_mappings includes schema:name for the resulting name value
+ class_uri: prov:Entity
+ close_mappings:
+ - skos:Concept
+ related_mappings:
+ - schema:name
attributes:
claim_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml
index 988c15e256..9da3c6f8d1 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -21,7 +22,25 @@ default_range: string
classes:
DataTierSummary:
- description: Summary of data tiers present in entry
+ description: >-
+ Summary of data quality tiers present in an entry. Lists fields
+ by tier: TIER_1_AUTHORITATIVE (registries), TIER_2_VERIFIED
+ (institutional sources), TIER_3_CROWD_SOURCED (Wikidata, OSM),
+ TIER_4_INFERRED (NLP-extracted).
+
+ Ontology mapping rationale:
+ - class_uri is dqv:QualityAnnotation from Data Quality Vocabulary
+ because this summarizes data quality levels across an entry
+ - close_mappings includes prov:Entity as the summary is itself
+ a traceable metadata entity
+ - related_mappings includes dqv:QualityMeasurement (quality metrics)
+ and schema:PropertyValue (tier assignments as property values)
+ class_uri: dqv:QualityAnnotation
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - dqv:QualityMeasurement
+ - schema:PropertyValue
attributes:
TIER_1_AUTHORITATIVE:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/EducationEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/EducationEntry.yaml
index bcf54d75be..9a2999dc93 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/EducationEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/EducationEntry.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -21,7 +23,25 @@ default_range: string
classes:
EducationEntry:
- description: Educational background entry
+ description: >-
+ Educational background entry representing a single educational credential or
+ period of study at an institution. Contains institution name, degree, field of
+ study, dates, and description. This represents observed educational data
+ extracted from a profile source.
+
+ Ontology mapping rationale:
+ - class_uri is org:Membership because education represents a temporal relationship
+ between a person and an educational institution (similar to employment)
+ - close_mappings includes schema:EducationalOccupationalCredential as Schema.org's
+ concept for educational credentials and qualifications
+ - related_mappings includes crm:E7_Activity (education is an activity with temporal
+ extent) and prov:Entity (participates in provenance chains)
+ class_uri: org:Membership
+ close_mappings:
+ - schema:EducationalOccupationalCredential
+ related_mappings:
+ - crm:E7_Activity
+ - prov:Entity
attributes:
institution:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
index 49fa07c8f7..8f9f2f3ea2 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
ExtractionSourceInfo:
- description: Information about extraction source (can be structured or freeform)
+ description: >-
+ Information about extraction source (can be structured or freeform).
+ Documents the field extracted, the extracted text content, and
+ the method used for extraction (pattern matching, LLM, etc.).
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because extraction source info is a
+ traceable entity recording what was extracted and how
+ - close_mappings includes pav:SourceAccessedAt as this documents
+ a source that was accessed during extraction
+ - related_mappings includes prov:Derivation (the extraction is
+ derived from source) and schema:PropertyValue (field/value pair)
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - prov:Derivation
+ - schema:PropertyValue
attributes:
field:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/FormerName.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/FormerName.yaml
index 9a36d8d8d0..8706bf93e6 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/FormerName.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/FormerName.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +23,20 @@ default_range: string
classes:
FormerName:
- description: A former name of the institution with optional metadata
+ description: >-
+ A former name of the institution with optional temporal bounds and metadata,
+ representing historical naming that is no longer in official use.
+
+ Ontology mapping rationale:
+ - class_uri is skos:hiddenLabel because former names are historical labels
+ that are no longer preferred but should still be searchable
+ - close_mappings includes org:changedBy for organizational change context
+ - related_mappings includes schema:alternateName for variant name relationships
+ class_uri: skos:hiddenLabel
+ close_mappings:
+ - org:changedBy
+ related_mappings:
+ - schema:alternateName
attributes:
name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml
index 1b6715a0f8..3e08c7cf9a 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml
@@ -25,7 +25,20 @@ default_range: string
classes:
GenealogiewerkbalkEnrichment:
- description: Dutch genealogy archives registry data
+ description: >-
+ Dutch genealogy archives registry (Genealogiewerkbalk) data including
+ municipality, province, and associated archive information.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ derived from the Dutch genealogy archives registry
+ - close_mappings includes schema:Dataset for registry data semantics
+ - related_mappings includes prov:PrimarySource for source registry
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:Dataset
+ related_mappings:
+ - prov:PrimarySource
attributes:
source:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
index 44212902c4..bf2ce4273e 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -23,7 +24,25 @@ default_range: string
classes:
GhcidBlock:
- description: GHCID generation metadata and history
+ description: >-
+ GHCID (Global Heritage Custodian Identifier) generation metadata
+ and history. Contains current GHCID string, UUID variants (v5, v8),
+ numeric form, generation timestamp, and history of GHCID changes
+ due to relocations, mergers, or collision resolution.
+
+ Ontology mapping rationale:
+ - class_uri is dcterms:Identifier because GHCID is fundamentally
+ an identifier assignment with associated metadata
+ - close_mappings includes prov:Entity as identifier blocks are
+ traceable provenance entities themselves
+ - related_mappings includes schema:PropertyValue (identifier as
+ property) and prov:Generation (identifier creation event)
+ class_uri: dcterms:Identifier
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - schema:PropertyValue
+ - prov:Generation
attributes:
ghcid_current:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
index 0ef5e1bbf4..9c08c7602f 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,21 @@ default_range: string
classes:
GhcidHistoryEntry:
- description: Historical GHCID entry with validity period
+ description: >-
+ Historical GHCID entry with validity period tracking the evolution of
+ a Global Heritage Custodian Identifier over time, including reasons
+ for changes and supersession relationships.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents a historical state
+ of an identifier entity with temporal validity bounds
+ - close_mappings includes dcterms:Identifier for identifier semantics
+ - related_mappings includes prov:Revision for versioning context
+ class_uri: prov:Entity
+ close_mappings:
+ - dcterms:Identifier
+ related_mappings:
+ - prov:Revision
attributes:
ghcid:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml
index 2927cc7955..277616ef5d 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml
@@ -34,7 +34,28 @@ default_range: string
classes:
GoogleMapsEnrichment:
- description: Full Google Maps Places API enrichment data
+ class_uri: prov:Entity
+ description: >-
+ Full Google Maps Places API enrichment data for a heritage custodian location.
+
+ prov:Entity - "An entity is a physical, digital, conceptual, or other kind of thing
+ with some fixed aspects; entities may be real or imaginary."
+
+ This class represents ENRICHMENT DATA extracted from Google Maps API about a place,
+ not the place itself. It captures metadata like ratings, reviews, photos, opening hours,
+ and address components that describe a heritage institution's physical location.
+
+ Mapping rationale:
+ - Uses prov:Entity because this is data derived from an external source (Google Maps API)
+ - The enrichment has clear provenance (API call, timestamp, place_id)
+ - NOT schema:Place - that would represent the actual location, not metadata about it
+ - Related to schema:Place as the subject being described
+ close_mappings:
+ - schema:PropertyValue # Similar: structured metadata about something
+ related_mappings:
+ - schema:Place # The subject this enrichment describes
+ - schema:LocalBusiness # Related: Google Maps often returns business data
+ - prov:Generation # The activity that created this enrichment
attributes:
place_id:
range: string
@@ -281,9 +302,6 @@ classes:
alternate_address:
range: string
description: Alternative address for the location
- note:
- range: string
- description: Additional notes about the Google Maps entry
wheelchair_accessible:
range: boolean
description: Whether the location is wheelchair accessible
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml
index 72aa5954f8..78d5c86679 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml
@@ -27,7 +27,20 @@ default_range: string
classes:
GoogleMapsPlaywrightEnrichment:
- description: Google Maps data extracted via Playwright browser automation
+ description: >-
+ Google Maps data extracted via Playwright browser automation including
+ place details, ratings, reviews, opening hours, photos, and popular times.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ (an entity) derived from Google Maps via automated extraction
+ - close_mappings includes schema:Place for location/place semantics
+ - related_mappings includes schema:LocalBusiness for business attributes
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:Place
+ related_mappings:
+ - schema:LocalBusiness
attributes:
scrape_timestamp:
range: datetime
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/GoogleReview.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/GoogleReview.yaml
index 17401b798c..98c0fd5166 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/GoogleReview.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/GoogleReview.yaml
@@ -21,7 +21,23 @@ default_range: string
classes:
GoogleReview:
- description: Google Maps review
+ description: >-
+ Google Maps review for a heritage institution. Contains author
+ information, rating (1-5 stars), review text, and publication
+ timestamp. Used for crowd-sourced quality assessment data.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Review which is the standard Schema.org
+ type for user reviews and ratings
+ - close_mappings includes schema:UserReview (specific review subtype)
+ - related_mappings includes prov:Entity (review as traceable data)
+ and schema:Rating (the numeric rating component)
+ class_uri: schema:Review
+ close_mappings:
+ - schema:UserReview
+ related_mappings:
+ - prov:Entity
+ - schema:Rating
attributes:
author_name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml
index 4009c2a0a4..824daea5c7 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +22,25 @@ default_range: string
classes:
HeritageExperienceEntry:
- description: Heritage sector specific experience
+ description: >-
+ Heritage sector specific work experience entry. Contains job title,
+ company, relevance assessment, heritage institution type code
+ (A/L/M/etc.), and demonstrated skills. Used for assessing person
+ profiles' heritage sector relevance.
+
+ Ontology mapping rationale:
+ - class_uri is org:Membership because heritage experience represents
+ a person's membership/role within heritage organizations
+ - close_mappings includes schema:OrganizationRole for web semantics
+ compatibility with role-based employment modeling
+ - related_mappings includes prov:Entity (experience as traceable
+ data) and schema:Occupation (the occupation/role held)
+ class_uri: org:Membership
+ close_mappings:
+ - schema:OrganizationRole
+ related_mappings:
+ - prov:Entity
+ - schema:Occupation
attributes:
title:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
index 1bcd0b0ea2..81afa52607 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
IsilCodeEntry:
- description: Structured ISIL code entry from Nationaal Archief
+ description: >-
+ Structured ISIL code entry from Nationaal Archief registry containing
+ the ISIL identifier, institution name, assignment date, and remarks.
+
+ Ontology mapping rationale:
+ - class_uri is dcterms:Identifier because ISIL is a standardized
+ identifier for libraries, archives, and similar institutions
+ - close_mappings includes schema:PropertyValue for structured identifier data
+ - related_mappings includes prov:Entity for provenance tracking
+ class_uri: dcterms:Identifier
+ close_mappings:
+ - schema:PropertyValue
+ related_mappings:
+ - prov:Entity
attributes:
code:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/LlmVerification.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/LlmVerification.yaml
index a77a718f47..5cec5cfa68 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/LlmVerification.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/LlmVerification.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -20,8 +21,21 @@ imports:
default_range: string
classes:
- LLMVerification:
- description: LLM-based verification results for enrichment data
+ LlmVerification:
+ description: >-
+ LLM-based verification results for enrichment data including match status,
+ confidence scores, entity type classification, and reasoning explanation.
+
+ Ontology mapping rationale:
+ - class_uri is dqv:QualityMeasurement because this represents a quality
+ assessment/verification measurement of enrichment data
+ - close_mappings includes prov:Activity for the verification activity
+ - related_mappings includes prov:SoftwareAgent for the LLM agent
+ class_uri: dqv:QualityMeasurement
+ close_mappings:
+ - prov:Activity
+ related_mappings:
+ - prov:SoftwareAgent
attributes:
is_match:
range: boolean
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/LocationResolution.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/LocationResolution.yaml
index 9b7471efe7..ef4b5a18c4 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/LocationResolution.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/LocationResolution.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -24,7 +25,26 @@ default_range: string
classes:
LocationResolution:
- description: Method and result of settlement resolution
+ description: >-
+ Method and result of settlement resolution for GHCID generation.
+ Records how a location was resolved from source data (coordinates,
+ place names, addresses) to a standardized settlement using GeoNames
+ or other authoritative geographic databases.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Location because this class represents the result
+ of resolving/identifying a geographic location, which PROV-O defines
+ as "an identifiable geographic place" with various expression methods
+ - close_mappings includes geo:SpatialThing because the resolution
+ produces spatial extent information (coordinates, feature codes)
+ - related_mappings includes schema:Place (general place concept) and
+ prov:Entity (the resolution result is a traceable entity)
+ class_uri: prov:Location
+ close_mappings:
+ - geo:SpatialThing
+ related_mappings:
+ - schema:Place
+ - prov:Entity
attributes:
method:
range: LocationResolutionMethodEnum
@@ -128,10 +148,7 @@ classes:
description: Whether micro-hamlet was skipped in favor of larger settlement
note:
range: string
- description: Additional note about the resolution
- note:
- range: string
- description: Additional notes about the resolution (alternative key)
+ description: Additional notes about the resolution
text_source:
range: string
description: Text source for fallback resolution (e.g., 'various')
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/MatchingSource.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/MatchingSource.yaml
index 7519eb528d..55dcb1b45b 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/MatchingSource.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/MatchingSource.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
MatchingSource:
- description: Source that contributed to name consensus
+ description: >-
+ Source that contributed to name consensus during entity resolution.
+ Records the source identifier, the name variant from that source,
+ and a match score indicating confidence in the match.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because matching sources are traceable
+ entities that contribute to entity resolution decisions
+ - close_mappings includes skos:mappingRelation as matching sources
+ establish relationships between name variants across sources
+ - related_mappings includes prov:PrimarySource (sources of evidence)
+ and schema:PropertyValue (source/name/score as property values)
+ class_uri: prov:Entity
+ close_mappings:
+ - skos:mappingRelation
+ related_mappings:
+ - prov:PrimarySource
+ - schema:PropertyValue
attributes:
source:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/MowInscription.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/MowInscription.yaml
index c3cd50917c..de3bdff8b0 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/MowInscription.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/MowInscription.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
MowInscription:
- description: Memory of the World inscription reference
+ description: >-
+ UNESCO Memory of the World (MoW) inscription reference. Contains
+ Wikidata ID, inscription name/title, and associated country code.
+ MoW inscriptions recognize documentary heritage of world significance.
+
+ Ontology mapping rationale:
+ - class_uri is crm:E73_Information_Object from CIDOC-CRM because
+ MoW inscriptions are information objects about documentary heritage
+ - close_mappings includes schema:CreativeWork as inscriptions
+ document creative/documentary works of heritage value
+ - related_mappings includes prov:Entity (inscription reference as
+ data) and crm:E31_Document (documentary heritage concept)
+ class_uri: crm:E73_Information_Object
+ close_mappings:
+ - schema:CreativeWork
+ related_mappings:
+ - prov:Entity
+ - crm:E31_Document
attributes:
wikidata_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml
index b6e77b546e..807e37d5e9 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
MunicipalityInfo:
- description: Municipality information
+ description: >-
+ Municipality information representing an administrative division
+ with name and code (e.g., CBS municipality code in the Netherlands).
+
+ Ontology mapping rationale:
+ - class_uri is locn:AdminUnit because this represents an
+ administrative territorial unit (municipality level)
+ - close_mappings includes schema:AdministrativeArea for general admin areas
+ - related_mappings includes schema:Place for location aspects
+ class_uri: locn:AdminUnit
+ close_mappings:
+ - schema:AdministrativeArea
+ related_mappings:
+ - schema:Place
attributes:
name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml
index 6d9b4edfc9..ebb8030432 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml
@@ -22,7 +22,20 @@ default_range: string
classes:
MuseumRegisterEnrichment:
- description: Dutch Museum Register (Museumregister Nederland) data
+ description: >-
+ Dutch Museum Register (Museumregister Nederland) data including
+ registration status, museum type, collection focus, and visitor statistics.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ derived from the Dutch Museum Register authority
+ - close_mappings includes schema:Museum for museum-specific semantics
+ - related_mappings includes prov:PrimarySource for authoritative registry
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:Museum
+ related_mappings:
+ - prov:PrimarySource
attributes:
museum_name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
index 978d5738ec..e95cebfc3c 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
MuseumRegisterProvenance:
- description: Provenance metadata for museum register enrichment
+ description: >-
+ Provenance metadata for museum register enrichment including source file,
+ URL, scrape timestamp, and page number in the registry.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents provenance metadata
+ about the museum register data source
+ - close_mappings includes pav:RetrievedFrom for web retrieval provenance
+ - related_mappings includes prov:PrimarySource for source registry
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:RetrievedFrom
+ related_mappings:
+ - prov:PrimarySource
attributes:
source_file:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
index 20ad65649e..231dc30a9c 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
@@ -24,7 +24,20 @@ default_range: string
classes:
NanIsilEnrichment:
- description: Nationaal Archief ISIL registry match
+ description: >-
+ Nationaal Archief ISIL registry match containing ISIL codes, institution
+ names, assignment dates, and matching metadata from the Dutch National Archive.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ derived from the Nationaal Archief ISIL registry (authoritative source)
+ - close_mappings includes dcterms:Identifier for ISIL identifier semantics
+ - related_mappings includes prov:PrimarySource for authoritative registry
+ class_uri: prov:Entity
+ close_mappings:
+ - dcterms:Identifier
+ related_mappings:
+ - prov:PrimarySource
attributes:
source:
range: string
@@ -73,10 +86,7 @@ classes:
description: Remarks
note:
range: string
- description: Additional note about this enrichment
- note:
- range: string
- description: Additional notes about this enrichment (alternative key)
+ description: Additional notes about this enrichment
nan_plaats:
range: string
description: City/place from Nationaal Archief
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
index e8e563a3b4..716b0128a5 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -23,7 +25,20 @@ default_range: string
classes:
NormalizedLocation:
- description: Normalized geographic location
+ description: >-
+ Normalized geographic location with standardized address components,
+ coordinates, and GeoNames integration for consistent place identification.
+
+ Ontology mapping rationale:
+ - class_uri is locn:Address because this represents a normalized,
+ structured geographic address with standardized components
+ - exact_mappings includes schema:Place as both represent physical locations
+ - close_mappings includes geo:SpatialThing for coordinate-based aspects
+ class_uri: locn:Address
+ exact_mappings:
+ - schema:Place
+ close_mappings:
+ - geo:SpatialThing
attributes:
latitude:
range: float
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OpeningHours.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OpeningHours.yaml
index 69ff9a33b1..7b343cb43c 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OpeningHours.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OpeningHours.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -22,7 +23,24 @@ default_range: string
classes:
OpeningHours:
- description: Business opening hours
+ description: >-
+ Business opening hours for heritage institutions. Contains current
+ open/closed status, structured opening periods by day, and human-
+ readable weekday text descriptions.
+
+ Ontology mapping rationale:
+ - class_uri is schema:OpeningHoursSpecification which is the
+ standard Schema.org type for structured opening hours
+ - close_mappings includes time:TemporalEntity from OWL-Time as
+ opening hours define temporal availability
+ - related_mappings includes prov:Entity (opening hours as data)
+ and schema:Place (opening hours belong to places)
+ class_uri: schema:OpeningHoursSpecification
+ close_mappings:
+ - time:TemporalEntity
+ related_mappings:
+ - prov:Entity
+ - schema:Place
attributes:
open_now:
range: boolean
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml
index bf0af4cfb7..3dda24a058 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -22,7 +23,20 @@ default_range: string
classes:
OpeningPeriod:
- description: Single opening period
+ description: >-
+ Single opening period representing a time window when an institution is
+ accessible, defined by open and close TimeSlot values.
+
+ Ontology mapping rationale:
+ - class_uri is schema:OpeningHoursSpecification because this class represents
+ structured opening hours data with open/close times
+ - exact_mappings includes time:Interval as both represent bounded time periods
+ - related_mappings includes schema:Schedule for broader scheduling context
+ class_uri: schema:OpeningHoursSpecification
+ exact_mappings:
+ - time:Interval
+ related_mappings:
+ - schema:Schedule
attributes:
open:
range: TimeSlot
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml
index 803e7c4b49..80ca8e1de7 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
OrganizationalChange:
- description: Organizational change record (closure, merger, etc.)
+ description: >-
+ Organizational change record documenting closures, mergers, renames,
+ and other lifecycle events. Includes change type, confirmation status,
+ source documentation, dates, and successor organization details.
+
+ Ontology mapping rationale:
+ - class_uri is org:ChangeEvent from W3C Organization Ontology which
+ specifically models organizational change events
+ - close_mappings includes prov:Activity as changes are activities
+ that transform organizations over time
+ - related_mappings includes schema:Event (general event concept) and
+ prov:Entity (change record as traceable data)
+ class_uri: org:ChangeEvent
+ close_mappings:
+ - prov:Activity
+ related_mappings:
+ - schema:Event
+ - prov:Entity
attributes:
change_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml
index 3c879de276..f20a489cf2 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -31,7 +32,23 @@ default_range: string
classes:
OriginalEntry:
- description: Source registry data from NDE CSV or CH-Annotator
+ description: >-
+ Source registry data from NDE CSV or CH-Annotator extraction,
+ preserving original field names and values as imported from the
+ source system. This is the raw data before normalization.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because original entries represent
+ authoritative source records before transformation.
+ - close_mappings includes dcat:Dataset as source entries form a
+ dataset of registry records.
+ - related_mappings includes prov:Entity for provenance tracking.
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - dcat:Dataset
+ related_mappings:
+ - prov:Entity
+ - schema:DataCatalog
attributes:
unnamed_field:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
index e67a7bfecb..fb488b1589 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryCoordinates:
- description: Coordinates from original source entry
+ description: >-
+ Geographic coordinates from an original source entry, supporting
+ both lat/lon and latitude/longitude field naming conventions.
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point from W3C WGS84 because coordinates
+ represent a geographic point.
+ - close_mappings includes schema:GeoCoordinates as the Schema.org
+ equivalent for coordinate data.
+ - related_mappings includes prov:Entity and geo:SpatialThing.
+ class_uri: geo:Point
+ close_mappings:
+ - schema:GeoCoordinates
+ related_mappings:
+ - prov:Entity
+ - geo:SpatialThing
attributes:
lat:
range: float
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
index 3e961611a0..49c8b21e71 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryIdentifier:
- description: Identifier from original source entry
+ description: >-
+ Identifier from an original source entry, supporting ISIL, Website,
+ Sigla, VIAF, GND, LCNAF and other identifier schemes.
+
+ Ontology mapping rationale:
+ - class_uri is dcterms:Identifier because this represents a formal
+ identifier with scheme and value.
+ - close_mappings includes schema:PropertyValue as identifiers are
+ property-value pairs.
+ - related_mappings includes prov:Entity for provenance tracking.
+ class_uri: dcterms:Identifier
+ close_mappings:
+ - schema:PropertyValue
+ related_mappings:
+ - prov:Entity
+ - schema:identifier
attributes:
identifier_scheme:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
index 9867343bf8..da1c41d024 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,8 +22,24 @@ default_range: string
classes:
OriginalEntryIdentifiersDict:
- description: Dictionary-format identifiers from original source (used by Palestinian
- heritage extraction)
+ description: >-
+ Dictionary-format identifiers from original source, used by Palestinian
+ heritage extraction. Contains named identifier fields (VIAF, GND,
+ LCNAF, GeoNames, Wikidata, ISIL, Website) as direct properties.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because the identifier collection is a
+ trackable entity containing multiple identifier values.
+ - close_mappings includes schema:PropertyValueSpecification as this
+ defines a structure of named identifier properties.
+ - related_mappings includes dcterms:Identifier for the individual
+ identifier semantics.
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:PropertyValueSpecification
+ related_mappings:
+ - dcterms:Identifier
+ - schema:PropertyValue
attributes:
viaf:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
index a760d5c398..fc9ca21c31 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryLocation:
- description: Location from original source entry
+ description: >-
+ Location from an original source entry including city, region, country,
+ postal code, street address, coordinates, and GeoNames ID.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Place because this represents a geographic
+ place with address and coordinate information.
+ - close_mappings includes locn:Address from W3C Locn vocabulary
+ for structured address information.
+ - related_mappings includes prov:Location and geo:SpatialThing.
+ class_uri: schema:Place
+ close_mappings:
+ - locn:Address
+ related_mappings:
+ - prov:Location
+ - geo:SpatialThing
attributes:
city:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml
index 1c5ac6c722..abb1ae7082 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wikibase: http://wikiba.se/ontology#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryWikidata:
- description: Wikidata reference from original source
+ description: >-
+ Wikidata reference from an original source entry, including the
+ Q-number ID, URL, multilingual labels, and descriptions.
+
+ Ontology mapping rationale:
+ - class_uri is wikibase:Item because this represents a reference
+ to a Wikidata item (Q-number entity).
+ - close_mappings includes schema:Thing as Wikidata items are
+ general entities with identifiers.
+ - related_mappings includes prov:Entity for tracking.
+ class_uri: wikibase:Item
+ close_mappings:
+ - schema:Thing
+ related_mappings:
+ - prov:Entity
+ - skos:Concept
attributes:
id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/PersonProfile.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/PersonProfile.yaml
index 26f5a0ed2f..4b7d90ca38 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/PersonProfile.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/PersonProfile.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
+ pico: https://personsincontext.org/model#
imports:
- linkml:types
@@ -25,7 +27,27 @@ default_range: string
classes:
PersonProfile:
- description: Complete profile data for a person (heritage professional)
+ class_uri: foaf:PersonalProfileDocument
+ description: >-
+ Complete profile data for a person (heritage professional).
+
+ foaf:PersonalProfileDocument - "A personal profile RDF document."
+
+ This class represents a DOCUMENT containing profile information about a person,
+ not the person themselves. It captures structured data extracted from LinkedIn
+ profiles, staff pages, and other web sources about heritage professionals.
+
+ Mapping rationale:
+ - Uses foaf:PersonalProfileDocument because this is a structured document ABOUT a person
+ - NOT foaf:Person/schema:Person - those represent the actual person entity
+ - Related to pico:PersonObservation which captures person data from historical sources
+ close_mappings:
+ - pico:PersonObservation # Similar: person data from a source, but PiCo is for historical records
+ - schema:ProfilePage # Similar: a web page serving as profile, but our class is data not page
+ related_mappings:
+ - foaf:Person # The subject of this profile document
+ - schema:Person # The subject of this profile document
+ - prov:Entity # A profile is an entity with provenance
attributes:
exa_search_metadata:
range: ExaSearchMetadata
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
index d4a6af1061..47dcda1f57 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
PhotoAttribution:
- description: Photo author attribution
+ description: >-
+ Photo author attribution containing display name, author URI,
+ and photo URI. Used for crediting photographers in Google Maps
+ and other image sources.
+
+ Ontology mapping rationale:
+ - class_uri is schema:ImageObject because this class describes
+ image attribution which relates to image objects
+ - close_mappings includes dcterms:RightsStatement as attribution
+ is a form of rights/credit statement
+ - related_mappings includes prov:Attribution (provenance attribution)
+ and schema:Person (the attributed author)
+ class_uri: schema:ImageObject
+ close_mappings:
+ - dcterms:RightsStatement
+ related_mappings:
+ - prov:Attribution
+ - schema:Person
attributes:
displayName:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
index febbbc3546..af40651b84 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
PlatformSourceReference:
- description: Structured source reference for a digital platform
+ description: >-
+ Structured source reference for a digital platform including URL,
+ fetch timestamp, and list of data fields extracted from that source.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because this represents a source
+ reference with provenance metadata for platform data extraction
+ - close_mappings includes pav:RetrievedFrom for web retrieval context
+ - related_mappings includes schema:WebPage for web platform references
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - pav:RetrievedFrom
+ related_mappings:
+ - schema:WebPage
attributes:
url:
range: uri
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ProfileData.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ProfileData.yaml
index b82e360c1d..2beb1b6afe 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ProfileData.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ProfileData.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pico: https://w3id.org/pico/
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -28,7 +30,26 @@ default_range: string
classes:
ProfileData:
- description: Core profile information for a person
+ description: >-
+ Core profile information for a person, containing extracted biographical data
+ such as name, career history, education, skills, and professional summary.
+ This represents observed/extracted data ABOUT a person from a source document
+ (e.g., LinkedIn profile), not the person entity itself.
+
+ Ontology mapping rationale:
+ - class_uri is pico:PersonObservation because this represents observed biographical
+ data extracted from a source, following the PiCo pattern of separating observations
+ from person reconstructions
+ - close_mappings includes foaf:PersonalProfileDocument as this is essentially
+ profile document content (though not RDF-specific)
+ - related_mappings includes schema:Person because the data describes a person,
+ and prov:Entity because the profile data participates in provenance chains
+ class_uri: pico:PersonObservation
+ close_mappings:
+ - foaf:PersonalProfileDocument
+ related_mappings:
+ - schema:Person
+ - prov:Entity
attributes:
full_name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml
index fc7a09505b..b5312e82a8 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -24,8 +25,25 @@ default_range: string
classes:
ProvenanceBlock:
- description: Complete provenance tracking for the entry (supports both nested and
- flat formats)
+ description: >-
+ Complete provenance tracking for the entry, supporting both nested and flat formats.
+ Contains information about data sources, extraction methods, timestamps, confidence
+ scores, and verification status. This is the primary class for documenting the
+ lineage and quality of data in custodian records.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Bundle because this represents a named set of provenance
+ descriptions bundled together - it's provenance ABOUT provenance/data
+ - close_mappings includes pav:Provenance conceptually as PAV's approach to
+ tracking authoring and versioning provenance
+ - related_mappings includes prov:Entity (the bundle is itself an entity) and
+ prov:Activity (extraction/enrichment are activities with timestamps)
+ class_uri: prov:Bundle
+ close_mappings:
+ - pav:Provenance
+ related_mappings:
+ - prov:Entity
+ - prov:Activity
attributes:
schema_version:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml
index 76246c40dc..4f84be7b02 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml
@@ -23,7 +23,21 @@ default_range: string
classes:
ProvenanceSources:
- description: Sources organized by type
+ description: >-
+ Sources organized by type, aggregating multiple source records from different
+ data providers (Google Maps, Wikidata, web archives, etc.) with data tier
+ classification (TIER_1 through TIER_4).
+
+ Ontology mapping rationale:
+ - class_uri is prov:Collection because this aggregates multiple provenance
+ sources into a typed collection structure
+ - close_mappings includes prov:Bundle as it groups related provenance records
+ - related_mappings includes schema:ItemList for list-based organization
+ class_uri: prov:Collection
+ close_mappings:
+ - prov:Bundle
+ related_mappings:
+ - schema:ItemList
attributes:
original_entry:
range: SourceRecord
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml
index 3987f183cb..69dccebf43 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
ProvinceInfo:
- description: Province information
+ description: >-
+ Province/region administrative information containing name and
+ ISO 3166-2 subdivision code. Used for administrative region
+ identification in location resolution and GHCID generation.
+
+ Ontology mapping rationale:
+ - class_uri is locn:AdminUnit from ISA Location Core Vocabulary
+ which specifically models administrative territorial units
+ - close_mappings includes schema:AdministrativeArea for web
+ semantics compatibility
+ - related_mappings includes prov:Entity (province info as data)
+ and schema:Place (provinces are geographic places)
+ class_uri: locn:AdminUnit
+ close_mappings:
+ - schema:AdministrativeArea
+ related_mappings:
+ - prov:Entity
+ - schema:Place
attributes:
name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/RawSource.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/RawSource.yaml
index 8037501fde..ea209770f3 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/RawSource.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/RawSource.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
RawSource:
- description: Raw source information for web enrichment
+ description: >-
+ Raw source information for web enrichment including URL, fetch timestamp,
+ HTTP status, content hash, and extracted highlights from search results.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because this represents the original
+ source material fetched from the web with full provenance metadata
+ - close_mappings includes pav:RetrievedFrom for web retrieval provenance
+ - close_mappings includes schema:WebPage as it captures web page data
+ - related_mappings includes prov:Entity for general provenance entity
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - pav:RetrievedFrom
+ - schema:WebPage
+ related_mappings:
+ - prov:Entity
attributes:
source_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml
index 8554363f66..5c3c916fc0 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml
@@ -21,7 +21,20 @@ default_range: string
classes:
RelatedPlace:
- description: A related place from Google Maps
+ description: >-
+ A related place from Google Maps representing nearby or associated
+ locations with ratings and review information.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Place because this represents a physical place
+ with associated review/rating metadata from Google Maps
+ - close_mappings includes schema:LocalBusiness for commercial place aspects
+ - related_mappings includes schema:Review for rating/review data
+ class_uri: schema:Place
+ close_mappings:
+ - schema:LocalBusiness
+ related_mappings:
+ - schema:Review
attributes:
name:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ResearchSource.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ResearchSource.yaml
index ca3c504225..d74aef1beb 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ResearchSource.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ResearchSource.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ cito: http://purl.org/spar/cito/
imports:
- linkml:types
@@ -22,7 +23,25 @@ default_range: string
classes:
ResearchSource:
- description: A research source consulted during location resolution
+ description: >-
+ A research source consulted during location resolution or other
+ investigative processes. Records the type of source (Wikidata,
+ web archive, official documents), identifiers, URLs, and any
+ structured data obtained from consultation.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because research sources are
+ primary sources of information consulted during resolution
+ - close_mappings includes cito:CitationAct as consulting a source
+ is similar to citing it for evidence
+ - related_mappings includes schema:CreativeWork (sources are works)
+ and prov:Entity (sources are traceable entities)
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - cito:CitationAct
+ related_mappings:
+ - schema:CreativeWork
+ - prov:Entity
attributes:
type:
range: string
@@ -37,9 +56,6 @@ classes:
note:
range: string
description: Additional notes about this source
- note:
- range: string
- description: Additional note about this source (singular alias for notes)
id:
range: string
description: Identifier for the source (e.g., Wikidata Q-number)
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
index 6dfac722ba..787318409d 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
SourceCoordinates:
- description: Source of coordinates for resolution
+ description: >-
+ Source of coordinates for geographic resolution, combining latitude/longitude
+ values with the data source that provided them (e.g., google_maps, wikidata).
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point because this represents a geographic point with
+ lat/lon coordinates
+ - exact_mappings includes schema:GeoCoordinates as both represent coordinate pairs
+ - close_mappings includes prov:Location for provenance-aware location data
+ class_uri: geo:Point
+ exact_mappings:
+ - schema:GeoCoordinates
+ close_mappings:
+ - prov:Location
attributes:
latitude:
range: float
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
index c53c62b2c5..793e2b33bd 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
SourceProvenance:
- description: Detailed provenance information about a source
+ description: >-
+ Detailed provenance information about a source including file location
+ metadata such as CSV row numbers, YAML array indices, and file paths.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents provenance metadata
+ about a source (the source as an entity with location details)
+ - close_mappings includes pav:SourceAccessedAt for source access provenance
+ - related_mappings includes schema:PropertyValue for structured metadata
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - schema:PropertyValue
attributes:
csv_row_number:
range: integer
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/SourceRecord.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/SourceRecord.yaml
index 928ed338ac..5389df205e 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/SourceRecord.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/SourceRecord.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -22,7 +24,24 @@ default_range: string
classes:
SourceRecord:
- description: Individual source record with claims
+ description: >-
+ Individual source record with claims, representing a data extraction from a specific
+ source (API, registry, web scrape, etc.). Contains metadata about the source type,
+ data tier, fetch timestamp, and extracted claims. Used to track provenance of
+ individual data points.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents a discrete data entity with
+ provenance (when fetched, from where, by what method)
+ - close_mappings includes dcat:Distribution as this is similar to a specific
+ manifestation/representation of data from a source
+ - related_mappings includes pav:retrievedFrom conceptually (the source was retrieved)
+ and prov:PrimarySource (the record may be from a primary source)
+ class_uri: prov:Entity
+ close_mappings:
+ - dcat:Distribution
+ related_mappings:
+ - prov:PrimarySource
attributes:
source_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/SourceReference.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/SourceReference.yaml
index 0f533a5930..01952129c5 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/SourceReference.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/SourceReference.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +23,22 @@ default_range: string
classes:
SourceReference:
- description: Structured source reference for a claim
+ description: >-
+ Structured source reference for a claim with text position information
+ including excerpts, character offsets, and relevance scores.
+
+ Ontology mapping rationale:
+ - class_uri is oa:TextPositionSelector because this class specifies
+ exact text positions (char_start, char_end) within a source document
+ - close_mappings includes prov:PrimarySource as it references source material
+ - close_mappings includes dcterms:BibliographicResource for citation context
+ - related_mappings includes schema:Quotation for text excerpt functionality
+ class_uri: oa:TextPositionSelector
+ close_mappings:
+ - prov:PrimarySource
+ - dcterms:BibliographicResource
+ related_mappings:
+ - schema:Quotation
attributes:
source_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml
index fca162096d..9ec6d6d79e 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
SourceStaffEntry:
- description: Reference to original staff entry
+ description: >-
+ Reference to original staff entry from custodian staff parsing.
+ Contains staff identifier, name, academic degree, professional
+ headline, LinkedIn URL, and heritage relevance assessment.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is a reference to source
+ data about staff, not the person themselves
+ - close_mappings includes foaf:Person as the entry describes
+ attributes of a person
+ - related_mappings includes schema:Person (person semantics) and
+ prov:PrimarySource (reference to original staff data)
+ class_uri: prov:Entity
+ close_mappings:
+ - foaf:Person
+ related_mappings:
+ - schema:Person
+ - prov:PrimarySource
attributes:
staff_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntry.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntry.yaml
index a53ac7f58a..3c2671f506 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntry.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntry.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +24,20 @@ default_range: string
classes:
TimeEntry:
- description: Structured time entry from source data
+ description: >-
+ Structured time entry from source data representing a temporal point or marker
+ with an associated label and type classification.
+
+ Ontology mapping rationale:
+ - class_uri is time:Instant because TimeEntry represents a single point in time
+ (a date or year) rather than a duration or interval
+ - close_mappings includes schema:DateTime as it represents structured temporal data
+ - related_mappings includes crm:E52_Time-Span for CIDOC-CRM alignment
+ class_uri: time:Instant
+ close_mappings:
+ - schema:DateTime
+ related_mappings:
+ - crm:E52_Time-Span
attributes:
label:
any_of:
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml
index 1550590903..6e735fc521 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +23,20 @@ default_range: string
classes:
TimeEntryType:
- description: Type classification for time entry
+ description: >-
+ Type classification for time entry specifying the semantic role of a temporal
+ point (e.g., begin, end, founded, dissolved).
+
+ Ontology mapping rationale:
+ - class_uri is skos:Concept because this represents a controlled vocabulary
+ term classifying the type/role of a time entry
+ - close_mappings includes time:TemporalEntity as it categorizes temporal concepts
+ - related_mappings includes schema:PropertyValue for structured type data
+ class_uri: skos:Concept
+ close_mappings:
+ - time:TemporalEntity
+ related_mappings:
+ - schema:PropertyValue
attributes:
label:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/TimeSlot.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/TimeSlot.yaml
index dafd7e71ac..2ba5f4d171 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/TimeSlot.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/TimeSlot.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
TimeSlot:
- description: Day and time specification
+ description: >-
+ Day and time specification representing a specific point within a weekly
+ schedule, consisting of day of week, hour, and minute.
+
+ Ontology mapping rationale:
+ - class_uri is time:Instant because TimeSlot represents a specific moment
+ (day + hour + minute) within a recurring weekly pattern
+ - exact_mappings includes schema:Time as both represent time-of-day specifications
+ - related_mappings includes schema:OpeningHoursSpecification for schedule context
+ class_uri: time:Instant
+ exact_mappings:
+ - schema:Time
+ related_mappings:
+ - schema:OpeningHoursSpecification
attributes:
day:
range: integer
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
index 080584f583..9fc93ae734 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -21,7 +23,22 @@ default_range: string
classes:
TimespanBlock:
- description: CRMsci E52 Time-Span temporal bounds
+ description: >-
+ CIDOC-CRM E52 Time-Span temporal bounds with four-point fuzzy temporal
+ representation (begin_of_the_begin, end_of_the_begin, begin_of_the_end,
+ end_of_the_end) to handle uncertain or approximate temporal boundaries.
+
+ Ontology mapping rationale:
+ - class_uri is crm:E52_Time-Span because this class directly implements
+ the CIDOC-CRM fuzzy temporal bounds pattern for cultural heritage data
+ - exact_mappings includes time:ProperInterval as both represent durations
+ with explicit start and end bounds
+ - related_mappings includes schema:Schedule for general temporal structuring
+ class_uri: crm:E52_Time-Span
+ exact_mappings:
+ - time:ProperInterval
+ related_mappings:
+ - schema:Schedule
attributes:
begin_of_the_begin:
range: datetime
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml
index 4552621079..95c786768d 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +23,24 @@ default_range: string
classes:
UnescoIchEnrichment:
- description: UNESCO Intangible Cultural Heritage elements for country
+ description: >-
+ UNESCO Intangible Cultural Heritage (ICH) elements for a country.
+ Contains the country code, total element count, enrichment timestamp,
+ and list of individual ICH elements inscribed on UNESCO lists.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is enrichment data extracted
+ from UNESCO ICH registry, not the heritage elements themselves
+ - close_mappings includes crm:E89_Propositional_Object as ICH
+ elements are conceptual/propositional cultural assets
+ - related_mappings includes schema:Dataset (collection of elements)
+ and prov:Collection (grouped provenance entities)
+ class_uri: prov:Entity
+ close_mappings:
+ - crm:E89_Propositional_Object
+ related_mappings:
+ - schema:Dataset
+ - prov:Collection
attributes:
country_code:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml
index b7a58e2f45..3cb9ffcb64 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ shacl: http://www.w3.org/ns/shacl#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
ValidationMetadata:
- description: Metadata about claim validation
+ description: >-
+ Metadata about claim validation including model, convention,
+ timestamp, and results. Records the outcome of validating
+ extracted claims against quality criteria or schema constraints.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Activity because validation is an activity
+ that operates on entities and produces validation results
+ - close_mappings includes dqv:QualityMeasurement as validation
+ produces quality assessments of data
+ - related_mappings includes shacl:ValidationResult (SHACL validation
+ outputs) and prov:Entity (validation metadata is itself an entity)
+ class_uri: prov:Activity
+ close_mappings:
+ - dqv:QualityMeasurement
+ related_mappings:
+ - shacl:ValidationResult
+ - prov:Entity
attributes:
model:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
index e185702618..d0494ff00f 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -28,7 +29,24 @@ default_range: string
classes:
WebEnrichment:
- description: Web archive metadata
+ description: >-
+ Web archive metadata and enrichment data extracted from institutional websites.
+ This class captures web scraping results, archived pages, extracted claims,
+ domain registration info, and organizational status discovered through web research.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment DATA with provenance
+ (timestamps, methods, sources), not the institution or website itself
+ - close_mappings includes pav:SourceAccessedAt because this captures when/how
+ a web source was accessed and archived
+ - related_mappings includes schema:WebPage because the enrichment is derived from
+ web pages, though this class models the extracted data not the page itself
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - schema:WebPage
+ - prov:Derivation
attributes:
web_archives:
range: WebArchive
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WebSource.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WebSource.yaml
index 519ea77057..691f6084a3 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WebSource.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WebSource.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
WebSource:
- description: Web source used for profile compilation
+ description: >-
+ Web source used for profile compilation, representing a URL that was consulted
+ or accessed during data extraction. This class captures the reference to an
+ online resource (URL, title, access date) from which information was derived.
+
+ Ontology mapping rationale:
+ - class_uri is dcat:Resource because this represents a web resource that provides
+ data, aligning with DCAT's concept of resources in a data context
+ - close_mappings includes pav:sourceAccessedAt conceptually (though that's a property,
+ not class) - this class models the same semantic: a source that was consulted
+ - related_mappings includes schema:WebPage as the source is typically a web page,
+ and prov:Entity because it participates in provenance chains
+ class_uri: dcat:Resource
+ close_mappings:
+ - schema:WebPage
+ related_mappings:
+ - prov:Entity
+ - schema:CreativeWork
attributes:
url:
range: uri
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml
index c950d68b15..efecc04c37 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ http: http://www.w3.org/2011/http#
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
WikidataApiMetadata:
- description: API call metadata
+ description: >-
+ Metadata about Wikidata API calls including endpoint, timestamp,
+ authentication status, response metrics, and rate limiting information.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Activity because an API call is an activity that
+ retrieves data from Wikidata.
+ - close_mappings includes http:Request from W3C HTTP Vocabulary as
+ API calls are HTTP requests.
+ - related_mappings includes schema:Action as an API call is an action
+ with inputs and outputs.
+ class_uri: prov:Activity
+ close_mappings:
+ - http:Request
+ related_mappings:
+ - schema:Action
+ - prov:Entity
attributes:
has_or_had_api_endpoint:
range: uri
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
index 83464614b4..9f9395be1d 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +23,24 @@ default_range: string
classes:
WikidataArchitecture:
- description: Architecture-related Wikidata properties
+ description: >-
+ Architecture-related properties extracted from Wikidata including
+ architects (P84), architectural styles (P149), and structural
+ engineers (P631). Used for heritage buildings and cultural sites.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is an extracted data bundle
+ about architectural attributes, not a building itself
+ - close_mappings includes crm:E22_Human-Made_Object as architectural
+ properties relate to designed physical structures
+ - related_mappings includes schema:Place (architecture relates to
+ places) and crm:E7_Activity (design/construction activities)
+ class_uri: prov:Entity
+ close_mappings:
+ - crm:E22_Human-Made_Object
+ related_mappings:
+ - schema:Place
+ - crm:E7_Activity
attributes:
has_or_had_architect:
range: WikidataEntity
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml
index 87293df686..0567f0f567 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ wikibase: http://wikiba.se/ontology#
imports:
- linkml:types
@@ -22,7 +24,23 @@ default_range: string
classes:
WikidataClassification:
- description: Classification properties
+ description: >-
+ Classification properties from Wikidata including instance_of (P31),
+ field_of_work (P101), heritage_designation (P1435), and main_subject (P921).
+
+ Ontology mapping rationale:
+ - class_uri is skos:Concept because classification represents conceptual
+ categorization of entities.
+ - close_mappings includes wikibase:Statement as Wikidata classifications
+ are statements about entities.
+ - related_mappings includes prov:Entity as classifications are tracked
+ data entities.
+ class_uri: skos:Concept
+ close_mappings:
+ - wikibase:Statement
+ related_mappings:
+ - prov:Entity
+ - schema:CategoryCode
attributes:
instance_of:
range: WikidataEntity
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml
index eca6f80926..5525b63eb5 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ bf: http://id.loc.gov/ontologies/bibframe/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
WikidataCollectionInfo:
- description: Collection information from Wikidata (flat structure)
+ description: >-
+ Collection information from Wikidata in a flat structure, capturing
+ collection item counts and related metrics.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Collection because this describes collection-level
+ information from Wikidata.
+ - close_mappings includes bf:Collection from BIBFRAME as an equivalent
+ bibliographic collection concept.
+ - related_mappings includes prov:Entity as collection info is tracked data.
+ class_uri: schema:Collection
+ close_mappings:
+ - bf:Collection
+ related_mappings:
+ - prov:Entity
+ - schema:QuantitativeValue
attributes:
collection_items_count:
any_of:
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataContact.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataContact.yaml
index a8aecef56f..6c54e8ad3b 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataContact.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataContact.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ vcard: http://www.w3.org/2006/vcard/ns#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataContact:
- description: Contact information from Wikidata
+ description: >-
+ Contact information extracted from Wikidata including phone numbers
+ (P1329), email addresses (P968), and fax numbers (P2900). Supports
+ multiple values for phone and email fields.
+
+ Ontology mapping rationale:
+ - class_uri is schema:ContactPoint because this class aggregates
+ contact details (phone, email, fax) as Schema.org defines
+ - close_mappings includes vcard:Contact from vCard ontology which
+ serves similar purpose for contact information modeling
+ - related_mappings includes prov:Entity (traceable contact data)
+ and schema:Organization (contact info typically belongs to orgs)
+ class_uri: schema:ContactPoint
+ close_mappings:
+ - vcard:Contact
+ related_mappings:
+ - prov:Entity
+ - schema:Organization
attributes:
phone_number:
any_of:
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
index 3fab8b8b83..f90722c583 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
+ wikibase: http://wikiba.se/ontology#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
WikidataCoordinates:
- description: Coordinates from Wikidata P625
+ description: >-
+ Coordinates from Wikidata P625 (coordinate location property).
+ Includes latitude, longitude, precision level, and reference globe.
+ Precision indicates the accuracy of coordinates (e.g., to nearest degree).
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point because coordinates represent a specific
+ point in WGS84 coordinate reference system
+ - close_mappings includes wikibase:GlobecoordinateValue which is
+ Wikidata's native coordinate value type
+ - related_mappings includes schema:GeoCoordinates (web semantics)
+ and prov:Entity (coordinates are traceable data)
+ class_uri: geo:Point
+ close_mappings:
+ - wikibase:GlobecoordinateValue
+ related_mappings:
+ - schema:GeoCoordinates
+ - prov:Entity
attributes:
latitude:
range: float
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml
index f173df5cd1..c647f41b68 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wd: http://www.wikidata.org/entity/
imports:
- linkml:types
@@ -44,7 +45,25 @@ default_range: string
classes:
WikidataEnrichment:
- description: Full Wikidata enrichment data
+ description: >-
+ Full Wikidata enrichment data extracted from Wikidata SPARQL/API for a heritage custodian.
+ This class represents derived data (prov:Entity) where Wikidata serves as the primary source.
+ The enrichment captures labels, descriptions, identifiers, coordinates, temporal data,
+ classification, and other structured claims from the Wikidata knowledge graph.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment DATA with provenance,
+ not the heritage institution itself (which is modeled by Custodian class)
+ - close_mappings includes prov:PrimarySource because Wikidata functions as a
+ primary/authoritative source for linked open data
+ - related_mappings includes prov:Derivation because the enrichment is derived from
+ Wikidata through API queries
+ class_uri: prov:Entity
+ close_mappings:
+ - prov:PrimarySource
+ related_mappings:
+ - prov:Derivation
+ - wd:Q2013
attributes:
wikidata_entity_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml
index 61383b07f8..da1a5167c6 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wikibase: http://wikiba.se/ontology#
+ wd: http://www.wikidata.org/entity/
imports:
- linkml:types
@@ -21,7 +23,23 @@ default_range: string
classes:
WikidataEntity:
- description: Reference to a Wikidata entity
+ description: >-
+ Reference to a Wikidata entity (Q-item), including Q-number identifier,
+ multilingual labels (en/nl), descriptions, and instance_of classifications.
+
+ Ontology mapping rationale:
+ - class_uri is wikibase:Item because this represents a Wikidata item
+ (Q-number entity) in the Wikibase data model.
+ - close_mappings includes schema:Thing as Wikidata items are general
+ things with identifiers and labels.
+ - related_mappings includes prov:Entity as Wikidata entities are
+ provenance-trackable.
+ class_uri: wikibase:Item
+ close_mappings:
+ - schema:Thing
+ related_mappings:
+ - prov:Entity
+ - skos:Concept
attributes:
id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
index 646cf4308d..82d3aac81d 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -23,7 +25,24 @@ default_range: string
classes:
WikidataLocation:
- description: Location properties from Wikidata
+ description: >-
+ Location properties extracted from Wikidata including country (P17),
+ headquarters location (P159), coordinates (P625), administrative
+ entity (P131), postal code (P281), and adjacent buildings (P3032).
+
+ Ontology mapping rationale:
+ - class_uri is schema:Place because location properties describe
+ a geographic place.
+ - close_mappings includes locn:Address from W3C Locn as this captures
+ structured location information.
+ - related_mappings includes geo:SpatialThing for coordinate data
+ and prov:Location for provenance context.
+ class_uri: schema:Place
+ close_mappings:
+ - locn:Address
+ related_mappings:
+ - geo:SpatialThing
+ - prov:Location
attributes:
country_reference:
any_of:
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
index a231419a25..e88b3bbfbe 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +23,23 @@ default_range: string
classes:
WikidataMedia:
- description: Media files from Wikidata
+ description: >-
+ Media files from Wikidata including images (P18), logos (P154),
+ Commons categories (P373), galleries (P935), coat of arms (P94),
+ and flag images (P41).
+
+ Ontology mapping rationale:
+ - class_uri is schema:MediaObject because this represents media
+ file references from Wikidata/Commons.
+ - close_mappings includes foaf:Image as many properties are images.
+ - related_mappings includes dcterms:MediaType for media classification
+ and prov:Entity as media references are tracked entities.
+ class_uri: schema:MediaObject
+ close_mappings:
+ - foaf:Image
+ related_mappings:
+ - dcterms:MediaType
+ - prov:Entity
attributes:
image:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml
index 5480ed7dbb..c0f7c32371 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
+ wd: http://www.wikidata.org/entity/
imports:
- linkml:types
@@ -22,7 +24,23 @@ default_range: string
classes:
WikidataOrganization:
- description: Organizational properties
+ description: >-
+ Organizational properties extracted from Wikidata, including
+ hierarchical relationships (part_of, parent_organization, subsidiary),
+ governance (chairperson, CEO), and membership affiliations.
+
+ Ontology mapping rationale:
+ - class_uri is org:Organization because this class represents
+ organizational entity data from Wikidata aligned with W3C Org
+ - close_mappings includes schema:Organization for web semantics
+ - related_mappings includes prov:Entity (traceable data unit) and
+ wd:Q43229 (Wikidata's concept of organization)
+ class_uri: org:Organization
+ close_mappings:
+ - schema:Organization
+ related_mappings:
+ - prov:Entity
+ - wd:Q43229
attributes:
part_of:
range: WikidataEntity
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml
index 9b49a048c4..d5e9cf68fe 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +23,25 @@ default_range: string
classes:
WikidataRecognition:
- description: Awards and recognition from Wikidata
+ description: >-
+ Awards and recognition information extracted from Wikidata,
+ particularly the award received property (P166). Used to track
+ honors, certifications, and formal recognition received by
+ heritage institutions.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is extracted recognition
+ data, not the recognition/award event itself
+ - close_mappings includes schema:AggregateRating as recognition
+ data provides a form of institutional quality assessment
+ - related_mappings includes crm:E7_Activity (award ceremonies are
+ activities) and schema:Organization (awards are given to orgs)
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:AggregateRating
+ related_mappings:
+ - crm:E7_Activity
+ - schema:Organization
attributes:
award_received:
range: WikidataEntity
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml
index 27456b49eb..352bb962a8 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataSocialMedia:
- description: Social media identifiers
+ description: >-
+ Social media identifiers and metrics extracted from Wikidata.
+ Includes platform-specific usernames/IDs for Instagram, LinkedIn,
+ Twitter/X, Facebook, YouTube, plus aggregate follower counts (P8687).
+
+ Ontology mapping rationale:
+ - class_uri is foaf:OnlineAccount because social media profiles
+ are online accounts as defined by FOAF
+ - close_mappings includes schema:ProfilePage as social media
+ accounts manifest as profile pages
+ - related_mappings includes prov:Entity (traceable data) and
+ schema:Organization (social accounts belong to organizations)
+ class_uri: foaf:OnlineAccount
+ close_mappings:
+ - schema:ProfilePage
+ related_mappings:
+ - prov:Entity
+ - schema:Organization
attributes:
instagram_username:
any_of:
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml
index a121e1617d..158b54ab78 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataTemporal:
- description: Temporal properties from Wikidata
+ description: >-
+ Temporal properties extracted from Wikidata including inception (P571),
+ dissolution (P576), official opening (P1619), and activity time spans
+ (P580/P582). Captures key dates in organizational lifecycle.
+
+ Ontology mapping rationale:
+ - class_uri is time:TemporalEntity from OWL-Time because this class
+ aggregates temporal properties defining existence/activity periods
+ - close_mappings includes prov:InstantaneousEvent as dates mark
+ discrete events in time (founding, dissolution, opening)
+ - related_mappings includes schema:Event (lifecycle events) and
+ prov:Entity (temporal data as traceable entity)
+ class_uri: time:TemporalEntity
+ close_mappings:
+ - prov:InstantaneousEvent
+ related_mappings:
+ - schema:Event
+ - prov:Entity
attributes:
inception:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml
index c4d298e2ab..afb1418433 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wikibase: http://wikiba.se/ontology#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
WikidataTimeValue:
- description: Wikidata time value with precision metadata
+ description: >-
+ Wikidata time value with precision metadata. Records temporal
+ information in ISO 8601 format along with precision level
+ (9=year, 10=month, 11=day) and calendar model (typically Gregorian).
+
+ Ontology mapping rationale:
+ - class_uri is wikibase:TimeValue because this directly represents
+ Wikidata's native time value datatype with precision
+ - close_mappings includes time:Instant from OWL-Time as both
+ represent points in time (though TimeValue adds precision)
+ - related_mappings includes xsd:dateTime (base type) and
+ prov:InstantaneousEvent (provenance temporal marker)
+ class_uri: wikibase:TimeValue
+ close_mappings:
+ - time:Instant
+ related_mappings:
+ - xsd:dateTime
+ - prov:InstantaneousEvent
attributes:
time:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml
index 990340649e..ec541b2ffc 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataWeb:
- description: Web presence from Wikidata
+ description: >-
+ Web presence information extracted from Wikidata including official
+ website URLs (P856), description URLs (P973), and official blog URLs
+ (P1581). Supports multiple URLs per property.
+
+ Ontology mapping rationale:
+ - class_uri is schema:WebSite because this class aggregates
+ web presence information (websites, blogs, description pages)
+ - close_mappings includes foaf:Document as web pages are documents
+ in the FOAF sense (information resources)
+ - related_mappings includes prov:Entity (traceable web data) and
+ schema:Organization (web presence belongs to organizations)
+ class_uri: schema:WebSite
+ close_mappings:
+ - foaf:Document
+ related_mappings:
+ - prov:Entity
+ - schema:Organization
attributes:
official_website:
any_of:
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml
index 02002a85a5..c6472e7cea 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
YoutubeChannel:
- description: YouTube channel metadata
+ description: >-
+ YouTube channel metadata including channel ID, title, description,
+ subscriber/video/view counts, country code, and branding URLs.
+
+ Ontology mapping rationale:
+ - class_uri is schema:BroadcastChannel because a YouTube channel is
+ a broadcast channel for video content distribution.
+ - close_mappings includes foaf:OnlineAccount as a channel represents
+ an online account on YouTube.
+ - related_mappings includes schema:Organization as channels often
+ represent institutional presence, and prov:Entity for tracking.
+ class_uri: schema:BroadcastChannel
+ close_mappings:
+ - foaf:OnlineAccount
+ related_mappings:
+ - schema:Organization
+ - prov:Entity
attributes:
channel_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml
index ac6369ae35..7865caa16f 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ sioc: http://rdfs.org/sioc/ns#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
YoutubeComment:
- description: YouTube video comment
+ description: >-
+ YouTube video comment including comment ID, author information,
+ text content, like count, and timestamps.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Comment because this represents user-generated
+ comment content on YouTube videos.
+ - close_mappings includes sioc:Post from SIOC (Semantically-Interlinked
+ Online Communities) as a comment is a type of online post.
+ - related_mappings includes prov:Entity for tracking comment provenance.
+ class_uri: schema:Comment
+ close_mappings:
+ - sioc:Post
+ related_mappings:
+ - prov:Entity
+ - schema:UserComments
attributes:
comment_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml
index eff3363103..6bfb93eaa4 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -27,8 +28,24 @@ default_range: string
classes:
YoutubeEnrichment:
- description: YouTube channel and video data for the institution (supports both flat
- and nested formats)
+ description: >-
+ YouTube channel and video data for a heritage institution, supporting
+ both flat and nested data formats. Includes channel metadata, videos,
+ social links, and LLM verification results.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because YouTube enrichment data is a
+ provenance-tracked entity derived from YouTube API.
+ - close_mappings includes dcat:Dataset as the enrichment represents
+ a dataset of YouTube information.
+ - related_mappings includes schema:BroadcastChannel for the channel
+ aspect and prov:Collection for the video collection.
+ class_uri: prov:Entity
+ close_mappings:
+ - dcat:Dataset
+ related_mappings:
+ - schema:BroadcastChannel
+ - prov:Collection
attributes:
source_url:
range: uri
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
index d9b29c2336..df964239ac 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -22,7 +23,22 @@ default_range: string
classes:
YoutubeProvenance:
- description: Provenance information for YouTube enrichment
+ description: >-
+ Provenance information for YouTube enrichment including source URL,
+ extraction method, timestamp, and data quality tier.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because provenance metadata is itself a
+ trackable entity describing data origins.
+ - close_mappings includes pav:SourceAccessedAt to capture the access
+ point and timing of YouTube data retrieval.
+ - related_mappings includes prov:Activity as extraction is an activity.
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - prov:Activity
+ - prov:Generation
attributes:
source_url:
range: uri
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml
index 99d39bfd56..5969574a3e 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
YoutubeSocialLink:
- description: Social media link from YouTube channel
+ description: >-
+ Social media link from a YouTube channel's about page, linking to
+ external platforms like Website, Facebook, Twitter, Instagram, etc.
+
+ Ontology mapping rationale:
+ - class_uri is schema:WebPage because a social link points to a
+ web page on another platform.
+ - close_mappings includes foaf:OnlineAccount as social links often
+ point to social media accounts.
+ - related_mappings includes prov:Entity for tracking and schema:URL
+ for the link structure.
+ class_uri: schema:WebPage
+ close_mappings:
+ - foaf:OnlineAccount
+ related_mappings:
+ - prov:Entity
+ - schema:URL
attributes:
platform:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml
index 049bc5d7a8..471adc3d75 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml
@@ -22,7 +22,22 @@ default_range: string
classes:
YoutubeSourceRecord:
- description: YouTube source record for provenance tracking
+ description: >-
+ YouTube source record for provenance tracking, documenting API calls,
+ data tier, claims extracted, and any misattribution corrections.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because this represents a primary
+ source record from the YouTube Data API.
+ - close_mappings includes prov:Entity as source records are trackable
+ provenance entities.
+ - related_mappings includes prov:Revision for correction tracking.
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - prov:Revision
+ - prov:Activity
attributes:
source_type:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
index 43da9236ed..b8384a5984 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
YoutubeTranscript:
- description: YouTube video transcript
+ description: >-
+ YouTube video transcript including video ID, language, transcript type
+ (manual or auto-generated), full text, and extraction metadata.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Transcript because this represents a textual
+ transcript of video/audio content.
+ - close_mappings includes oa:TextualBody as the transcript text
+ forms annotation body content.
+ - related_mappings includes prov:Entity for tracking and schema:MediaObject
+ as transcripts derive from media.
+ class_uri: schema:Transcript
+ close_mappings:
+ - oa:TextualBody
+ related_mappings:
+ - prov:Entity
+ - schema:MediaObject
attributes:
video_id:
range: string
diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml
index 4f801b23b4..f061176abd 100644
--- a/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml
+++ b/frontend/public/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml
@@ -23,7 +23,24 @@ default_range: string
classes:
YoutubeVideo:
- description: Individual YouTube video metadata
+ description: >-
+ Individual YouTube video metadata including video ID, title, description,
+ view/like/comment counts, duration, thumbnail, tags, and associated
+ comments and transcripts.
+
+ Ontology mapping rationale:
+ - class_uri is schema:VideoObject because this represents a video
+ as a media object on YouTube.
+ - close_mappings includes schema:MediaObject as the broader media
+ object category.
+ - related_mappings includes prov:Entity for provenance tracking and
+ schema:CreativeWork as videos are creative works.
+ class_uri: schema:VideoObject
+ close_mappings:
+ - schema:MediaObject
+ related_mappings:
+ - prov:Entity
+ - schema:CreativeWork
attributes:
video_id:
range: string
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 70014a1e4e..a64fad9365 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -187,6 +187,10 @@ const router = createBrowserRouter([
path: 'conversation',
element: withSuspense(ConversationPage),
},
+ {
+ path: 'review',
+ element: withSuspense(EntityReviewPage),
+ },
],
},
]);
diff --git a/frontend/src/components/layout/Navigation.tsx b/frontend/src/components/layout/Navigation.tsx
index 30d9d0e680..4449f80612 100644
--- a/frontend/src/components/layout/Navigation.tsx
+++ b/frontend/src/components/layout/Navigation.tsx
@@ -395,7 +395,7 @@ export function Navigation() {
{/* Settings Menu */}
@@ -3844,6 +3964,14 @@ const LinkMLViewerPage: React.FC = () => {
)}
+
+ {/* Ontology Term Popup - renders when a mapping tag is clicked */}
+ {ontologyPopupCurie && (
+ setOntologyPopupCurie(null)}
+ />
+ )}
);
};
diff --git a/schemas/20251121/linkml/manifest.json b/schemas/20251121/linkml/manifest.json
index 0ba25d518e..2272b139d1 100644
--- a/schemas/20251121/linkml/manifest.json
+++ b/schemas/20251121/linkml/manifest.json
@@ -1,5 +1,5 @@
{
- "generated": "2026-01-12T17:31:31.920Z",
+ "generated": "2026-01-13T00:49:44.406Z",
"schemaRoot": "/schemas/20251121/linkml",
"totalFiles": 2886,
"categoryCounts": {
diff --git a/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml b/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml
index 68431d7a67..8cbce2f105 100644
--- a/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml
+++ b/schemas/20251121/linkml/modules/classes/AdmissionInfo.yaml
@@ -21,7 +21,20 @@ default_range: string
classes:
AdmissionInfo:
- description: Structured admission price information from Google Maps
+ description: >-
+ Structured admission price information from Google Maps including
+ price value and notes about additional fees or conditions.
+
+ Ontology mapping rationale:
+ - class_uri is schema:PriceSpecification because this represents
+ structured price information for museum/institution admission
+ - close_mappings includes schema:Offer for commercial offering context
+ - related_mappings includes schema:MonetaryAmount for price values
+ class_uri: schema:PriceSpecification
+ close_mappings:
+ - schema:Offer
+ related_mappings:
+ - schema:MonetaryAmount
attributes:
price:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/AlternativeName.yaml b/schemas/20251121/linkml/modules/classes/AlternativeName.yaml
index 82eaec96a5..0876904247 100644
--- a/schemas/20251121/linkml/modules/classes/AlternativeName.yaml
+++ b/schemas/20251121/linkml/modules/classes/AlternativeName.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
AlternativeName:
- description: Alternative name with language and source information
+ description: >-
+ Alternative name with language and source information, representing
+ a variant or translated form of an institution's name.
+
+ Ontology mapping rationale:
+ - class_uri is skos:altLabel because this represents an alternative
+ lexical label for a concept (the institution)
+ - exact_mappings includes schema:alternateName as both represent variant names
+ - related_mappings includes rdfs:label for general labeling context
+ class_uri: skos:altLabel
+ exact_mappings:
+ - schema:alternateName
+ related_mappings:
+ - rdfs:label
attributes:
name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml b/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml
index 632b01237f..1c24ff2e44 100644
--- a/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml
+++ b/schemas/20251121/linkml/modules/classes/ArchiveInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
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#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
ArchiveInfo:
- description: Archive reference
+ description: >-
+ Archive reference containing basic information about an archival
+ institution including name, website, and ISIL identifier.
+
+ Ontology mapping rationale:
+ - class_uri is rico:Agent because archives are agents that create,
+ maintain, and provide access to records (RiC-O archival ontology)
+ - close_mappings includes schema:ArchiveOrganization for Schema.org alignment
+ - related_mappings includes prov:Agent for provenance agent role
+ class_uri: rico:Agent
+ close_mappings:
+ - schema:ArchiveOrganization
+ related_mappings:
+ - prov:Agent
attributes:
name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/CareerEntry.yaml b/schemas/20251121/linkml/modules/classes/CareerEntry.yaml
index 3d69aa7970..8da68164b9 100644
--- a/schemas/20251121/linkml/modules/classes/CareerEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/CareerEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
CareerEntry:
- description: Career history entry
+ description: >-
+ Career history entry representing a single job position in a person's employment history.
+ Contains job title, company, location, dates, duration, and description of the role.
+ This represents observed employment data extracted from a profile source.
+
+ Ontology mapping rationale:
+ - class_uri is org:Membership because this represents a relationship between a person
+ and an organization with a specific role, which is precisely what org:Membership models
+ - close_mappings includes schema:OrganizationRole as Schema.org's approach to
+ representing a person's role in an organization
+ - related_mappings includes org:Role (the abstract role) and prov:Entity (participates
+ in provenance chains as extracted data)
+ class_uri: org:Membership
+ close_mappings:
+ - schema:OrganizationRole
+ related_mappings:
+ - org:Role
+ - prov:Entity
attributes:
title:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml
index 02e1e6b26e..035b452ec5 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationMetadata.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -21,7 +23,23 @@ default_range: string
classes:
ChAnnotatorAnnotationMetadata:
- description: Metadata about the annotation
+ description: >-
+ Metadata about the CH-Annotator annotation including confidence scores,
+ verification status, and quality metrics.
+
+ Ontology mapping rationale:
+ - class_uri is oa:Annotation because this represents metadata about an
+ annotation following the W3C Web Annotation Data Model.
+ - close_mappings includes dqv:QualityAnnotation because it captures
+ quality-related metadata (confidence, verification).
+ - related_mappings includes prov:Entity as the annotation metadata itself
+ is a provenance-tracked entity.
+ class_uri: oa:Annotation
+ close_mappings:
+ - dqv:QualityAnnotation
+ related_mappings:
+ - prov:Entity
+ - schema:Rating
attributes:
confidence_score:
range: float
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml
index 544ac6358b..8c700e048a 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorAnnotationProvenance.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +23,22 @@ default_range: string
classes:
ChAnnotatorAnnotationProvenance:
- description: Provenance for the annotation process
+ description: >-
+ Provenance information for the CH-Annotator annotation process,
+ tracking who/what created the annotation, when, and how.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Activity because annotation is an activity that
+ generates annotations from source data.
+ - close_mappings includes pav:Authoring to capture the creative aspect
+ of annotation as an authoring process.
+ - related_mappings includes oa:Annotation as the target of this provenance.
+ class_uri: prov:Activity
+ close_mappings:
+ - pav:Authoring
+ related_mappings:
+ - oa:Annotation
+ - prov:Agent
attributes:
annotation_agent:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml
index b46a80e755..75be09c615 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorBlock.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
imports:
- linkml:types
@@ -27,7 +28,24 @@ default_range: string
classes:
ChAnnotatorBlock:
- description: CH-Annotator convention metadata and entity claims
+ description: >-
+ Container for CH-Annotator convention metadata and entity claims,
+ representing a complete annotation block following the CH-Annotator
+ convention (e.g., ch_annotator-v1_7_0).
+
+ Ontology mapping rationale:
+ - class_uri is prov:Collection because this aggregates multiple
+ annotation-related entities (claims, provenance, metadata).
+ - close_mappings includes oa:Annotation as it represents annotation
+ content following the Web Annotation model.
+ - related_mappings includes prov:Bundle as a related concept for
+ packaging provenance information.
+ class_uri: prov:Collection
+ close_mappings:
+ - oa:Annotation
+ related_mappings:
+ - prov:Bundle
+ - schema:Dataset
attributes:
convention_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml
index 89e2f63fe0..fe0bb11980 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClaim.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
imports:
- linkml:types
@@ -23,7 +25,24 @@ default_range: string
classes:
ChAnnotatorEntityClaim:
- description: Individual claim about an entity
+ description: >-
+ Individual claim about an entity extracted using CH-Annotator convention.
+ Each claim represents an assertion about an entity attribute with
+ associated provenance and confidence information.
+
+ Ontology mapping rationale:
+ - class_uri is rdf:Statement because a claim is fundamentally an
+ RDF-like statement (subject-predicate-object assertion).
+ - close_mappings includes oa:Annotation as claims are a form of
+ annotation body content.
+ - related_mappings includes prov:Entity as claims are provenance-tracked
+ entities themselves.
+ class_uri: rdf:Statement
+ close_mappings:
+ - oa:Annotation
+ related_mappings:
+ - prov:Entity
+ - schema:PropertyValue
attributes:
claim_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml
index c3ba0721dd..25a5cc386e 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorEntityClassification.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ oa: http://www.w3.org/ns/oa#
imports:
- linkml:types
@@ -23,7 +25,24 @@ default_range: string
classes:
ChAnnotatorEntityClassification:
- description: Entity classification in CH-Annotator taxonomy
+ description: >-
+ Entity classification in the CH-Annotator taxonomy, capturing hypernym
+ types (GRP, AGT, TOP, etc.) and subtypes (GRP.HER.ARC, GRP.HER.MUS).
+ Maps entities to the GLAMORCUBESFIXPHDNT heritage custodian taxonomy.
+
+ Ontology mapping rationale:
+ - class_uri is skos:Concept because entity classification represents
+ a conceptual categorization within the CH-Annotator taxonomy.
+ - close_mappings includes oa:classifying as the annotation motivation
+ for classification activities.
+ - related_mappings includes prov:Entity and schema:CategoryCode as
+ related concepts for typed categorization.
+ class_uri: skos:Concept
+ close_mappings:
+ - oa:classifying
+ related_mappings:
+ - prov:Entity
+ - schema:CategoryCode
attributes:
hypernym:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml
index 2e38eacc6d..8e2dbd4190 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorIntegrationNote.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
ChAnnotatorIntegrationNote:
- description: Note about how the file was created/integrated
+ description: >-
+ Note about how a file was created or integrated into the dataset,
+ documenting the source file, creation method, and integration process.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Derivation because integration notes describe how
+ data was derived from source files through transformation.
+ - close_mappings includes pav:importedFrom to capture the source-to-target
+ relationship in data integration.
+ - related_mappings includes prov:Activity as integration is an activity.
+ class_uri: prov:Derivation
+ close_mappings:
+ - pav:importedFrom
+ related_mappings:
+ - prov:Activity
+ - prov:Entity
attributes:
created_from:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml
index b36a6c785b..412ef2e556 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorModel.yaml
@@ -21,7 +21,23 @@ default_range: string
classes:
ChAnnotatorModel:
- description: Annotator model information
+ description: >-
+ Information about the annotator model used for CH-Annotator extraction,
+ including the model name (e.g., glm-4.5-flash), convention identifier,
+ and annotation timestamp.
+
+ Ontology mapping rationale:
+ - class_uri is prov:SoftwareAgent because the annotator model is a
+ software agent that performs annotation activities.
+ - close_mappings includes schema:SoftwareApplication as the model
+ is a software application.
+ - related_mappings includes prov:Agent as the broader agent concept.
+ class_uri: prov:SoftwareAgent
+ close_mappings:
+ - schema:SoftwareApplication
+ related_mappings:
+ - prov:Agent
+ - prov:Entity
attributes:
model:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml b/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
index a1f3e0a125..2e0a39f02c 100644
--- a/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
+++ b/schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
ChAnnotatorProvenance:
- description: Provenance information for CH-Annotator extraction
+ description: >-
+ Provenance information for CH-Annotator extraction, tracking the
+ namespace, path/XPath to source data, timestamp, agent, and convention
+ used for extraction.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because provenance information is itself
+ an entity that can be referenced and tracked.
+ - close_mappings includes pav:SourceAccessedAt as it captures access
+ to source data during extraction.
+ - related_mappings includes prov:Generation as extraction generates
+ new data from sources.
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - prov:Generation
+ - prov:Activity
attributes:
namespace:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml b/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml
index 0568b92f4b..bdf23293ea 100644
--- a/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml
+++ b/schemas/20251121/linkml/modules/classes/CoordinateProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
CoordinateProvenance:
- description: Provenance of coordinates
+ description: >-
+ Provenance of coordinates tracking the source, method, and metadata
+ for how geographic coordinates were obtained or resolved.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents provenance metadata
+ about a coordinate value (the coordinate source as an entity)
+ - close_mappings includes geo:Point for the coordinate data aspect
+ - related_mappings includes prov:Activity for the resolution activity
+ class_uri: prov:Entity
+ close_mappings:
+ - geo:Point
+ related_mappings:
+ - prov:Activity
attributes:
source_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/Coordinates.yaml b/schemas/20251121/linkml/modules/classes/Coordinates.yaml
index 104bea8c2a..a5363e2d38 100644
--- a/schemas/20251121/linkml/modules/classes/Coordinates.yaml
+++ b/schemas/20251121/linkml/modules/classes/Coordinates.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
+ sf: http://www.opengis.net/ont/sf#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
Coordinates:
- description: Geographic coordinates
+ description: >-
+ Geographic coordinates representing a point location with latitude and longitude
+ (and optional precision). Used to locate heritage custodians, events, and other
+ geographically situated entities.
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point from WGS84 vocabulary, the standard for representing
+ points on Earth with lat/long coordinates
+ - close_mappings includes sf:Point from OGC Simple Features as an alternative
+ geometry representation
+ - related_mappings includes geo:SpatialThing (superclass) and schema:GeoCoordinates
+ as Schema.org's coordinate representation
+ class_uri: geo:Point
+ close_mappings:
+ - sf:Point
+ related_mappings:
+ - geo:SpatialThing
+ - schema:GeoCoordinates
attributes:
latitude:
range: float
diff --git a/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml b/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml
index f3a521140e..0e36f6fddd 100644
--- a/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml
+++ b/schemas/20251121/linkml/modules/classes/CustodianLegalNameClaim.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
CustodianLegalNameClaim:
- description: Legal name claim with provenance
+ description: >-
+ Legal name claim with provenance, representing an assertion about
+ an institution's official registered legal name with extraction metadata.
+
+ Ontology mapping rationale:
+ - class_uri is rdf:Statement because this represents a reified claim
+ (statement about a statement) with provenance metadata
+ - close_mappings includes prov:Entity as the claim itself is an entity
+ - related_mappings includes schema:legalName for the semantic content
+ class_uri: rdf:Statement
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - schema:legalName
attributes:
claim_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml b/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml
index 423392bf93..d5e68adaa4 100644
--- a/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml
+++ b/schemas/20251121/linkml/modules/classes/CustodianNameConsensus.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
@@ -25,7 +26,21 @@ default_range: string
classes:
CustodianNameConsensus:
- description: Consensus determination of custodian name
+ description: >-
+ Consensus determination of custodian name aggregating evidence from multiple
+ sources with confidence scoring, including emic/standardized forms, alternative
+ names, and former names.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents a derived data entity
+ resulting from consensus analysis across multiple sources
+ - close_mappings includes skos:Concept as it establishes a canonical naming
+ - related_mappings includes schema:name for the resulting name value
+ class_uri: prov:Entity
+ close_mappings:
+ - skos:Concept
+ related_mappings:
+ - schema:name
attributes:
claim_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml b/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml
index 988c15e256..9da3c6f8d1 100644
--- a/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml
+++ b/schemas/20251121/linkml/modules/classes/DataTierSummary.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -21,7 +22,25 @@ default_range: string
classes:
DataTierSummary:
- description: Summary of data tiers present in entry
+ description: >-
+ Summary of data quality tiers present in an entry. Lists fields
+ by tier: TIER_1_AUTHORITATIVE (registries), TIER_2_VERIFIED
+ (institutional sources), TIER_3_CROWD_SOURCED (Wikidata, OSM),
+ TIER_4_INFERRED (NLP-extracted).
+
+ Ontology mapping rationale:
+ - class_uri is dqv:QualityAnnotation from Data Quality Vocabulary
+ because this summarizes data quality levels across an entry
+ - close_mappings includes prov:Entity as the summary is itself
+ a traceable metadata entity
+ - related_mappings includes dqv:QualityMeasurement (quality metrics)
+ and schema:PropertyValue (tier assignments as property values)
+ class_uri: dqv:QualityAnnotation
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - dqv:QualityMeasurement
+ - schema:PropertyValue
attributes:
TIER_1_AUTHORITATIVE:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/EducationEntry.yaml b/schemas/20251121/linkml/modules/classes/EducationEntry.yaml
index bcf54d75be..9a2999dc93 100644
--- a/schemas/20251121/linkml/modules/classes/EducationEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/EducationEntry.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -21,7 +23,25 @@ default_range: string
classes:
EducationEntry:
- description: Educational background entry
+ description: >-
+ Educational background entry representing a single educational credential or
+ period of study at an institution. Contains institution name, degree, field of
+ study, dates, and description. This represents observed educational data
+ extracted from a profile source.
+
+ Ontology mapping rationale:
+ - class_uri is org:Membership because education represents a temporal relationship
+ between a person and an educational institution (similar to employment)
+ - close_mappings includes schema:EducationalOccupationalCredential as Schema.org's
+ concept for educational credentials and qualifications
+ - related_mappings includes crm:E7_Activity (education is an activity with temporal
+ extent) and prov:Entity (participates in provenance chains)
+ class_uri: org:Membership
+ close_mappings:
+ - schema:EducationalOccupationalCredential
+ related_mappings:
+ - crm:E7_Activity
+ - prov:Entity
attributes:
institution:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml b/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
index 49fa07c8f7..8f9f2f3ea2 100644
--- a/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
+++ b/schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
ExtractionSourceInfo:
- description: Information about extraction source (can be structured or freeform)
+ description: >-
+ Information about extraction source (can be structured or freeform).
+ Documents the field extracted, the extracted text content, and
+ the method used for extraction (pattern matching, LLM, etc.).
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because extraction source info is a
+ traceable entity recording what was extracted and how
+ - close_mappings includes pav:SourceAccessedAt as this documents
+ a source that was accessed during extraction
+ - related_mappings includes prov:Derivation (the extraction is
+ derived from source) and schema:PropertyValue (field/value pair)
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - prov:Derivation
+ - schema:PropertyValue
attributes:
field:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/FormerName.yaml b/schemas/20251121/linkml/modules/classes/FormerName.yaml
index 9a36d8d8d0..8706bf93e6 100644
--- a/schemas/20251121/linkml/modules/classes/FormerName.yaml
+++ b/schemas/20251121/linkml/modules/classes/FormerName.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +23,20 @@ default_range: string
classes:
FormerName:
- description: A former name of the institution with optional metadata
+ description: >-
+ A former name of the institution with optional temporal bounds and metadata,
+ representing historical naming that is no longer in official use.
+
+ Ontology mapping rationale:
+ - class_uri is skos:hiddenLabel because former names are historical labels
+ that are no longer preferred but should still be searchable
+ - close_mappings includes org:changedBy for organizational change context
+ - related_mappings includes schema:alternateName for variant name relationships
+ class_uri: skos:hiddenLabel
+ close_mappings:
+ - org:changedBy
+ related_mappings:
+ - schema:alternateName
attributes:
name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml b/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml
index 1b6715a0f8..3e08c7cf9a 100644
--- a/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/GenealogiewerkbalkEnrichment.yaml
@@ -25,7 +25,20 @@ default_range: string
classes:
GenealogiewerkbalkEnrichment:
- description: Dutch genealogy archives registry data
+ description: >-
+ Dutch genealogy archives registry (Genealogiewerkbalk) data including
+ municipality, province, and associated archive information.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ derived from the Dutch genealogy archives registry
+ - close_mappings includes schema:Dataset for registry data semantics
+ - related_mappings includes prov:PrimarySource for source registry
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:Dataset
+ related_mappings:
+ - prov:PrimarySource
attributes:
source:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml b/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
index 44212902c4..bf2ce4273e 100644
--- a/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
+++ b/schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -23,7 +24,25 @@ default_range: string
classes:
GhcidBlock:
- description: GHCID generation metadata and history
+ description: >-
+ GHCID (Global Heritage Custodian Identifier) generation metadata
+ and history. Contains current GHCID string, UUID variants (v5, v8),
+ numeric form, generation timestamp, and history of GHCID changes
+ due to relocations, mergers, or collision resolution.
+
+ Ontology mapping rationale:
+ - class_uri is dcterms:Identifier because GHCID is fundamentally
+ an identifier assignment with associated metadata
+ - close_mappings includes prov:Entity as identifier blocks are
+ traceable provenance entities themselves
+ - related_mappings includes schema:PropertyValue (identifier as
+ property) and prov:Generation (identifier creation event)
+ class_uri: dcterms:Identifier
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - schema:PropertyValue
+ - prov:Generation
attributes:
ghcid_current:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml b/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
index 0ef5e1bbf4..9c08c7602f 100644
--- a/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,21 @@ default_range: string
classes:
GhcidHistoryEntry:
- description: Historical GHCID entry with validity period
+ description: >-
+ Historical GHCID entry with validity period tracking the evolution of
+ a Global Heritage Custodian Identifier over time, including reasons
+ for changes and supersession relationships.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents a historical state
+ of an identifier entity with temporal validity bounds
+ - close_mappings includes dcterms:Identifier for identifier semantics
+ - related_mappings includes prov:Revision for versioning context
+ class_uri: prov:Entity
+ close_mappings:
+ - dcterms:Identifier
+ related_mappings:
+ - prov:Revision
attributes:
ghcid:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml b/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml
index 2927cc7955..277616ef5d 100644
--- a/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/GoogleMapsEnrichment.yaml
@@ -34,7 +34,28 @@ default_range: string
classes:
GoogleMapsEnrichment:
- description: Full Google Maps Places API enrichment data
+ class_uri: prov:Entity
+ description: >-
+ Full Google Maps Places API enrichment data for a heritage custodian location.
+
+ prov:Entity - "An entity is a physical, digital, conceptual, or other kind of thing
+ with some fixed aspects; entities may be real or imaginary."
+
+ This class represents ENRICHMENT DATA extracted from Google Maps API about a place,
+ not the place itself. It captures metadata like ratings, reviews, photos, opening hours,
+ and address components that describe a heritage institution's physical location.
+
+ Mapping rationale:
+ - Uses prov:Entity because this is data derived from an external source (Google Maps API)
+ - The enrichment has clear provenance (API call, timestamp, place_id)
+ - NOT schema:Place - that would represent the actual location, not metadata about it
+ - Related to schema:Place as the subject being described
+ close_mappings:
+ - schema:PropertyValue # Similar: structured metadata about something
+ related_mappings:
+ - schema:Place # The subject this enrichment describes
+ - schema:LocalBusiness # Related: Google Maps often returns business data
+ - prov:Generation # The activity that created this enrichment
attributes:
place_id:
range: string
@@ -281,9 +302,6 @@ classes:
alternate_address:
range: string
description: Alternative address for the location
- note:
- range: string
- description: Additional notes about the Google Maps entry
wheelchair_accessible:
range: boolean
description: Whether the location is wheelchair accessible
diff --git a/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml b/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml
index 72aa5954f8..78d5c86679 100644
--- a/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/GoogleMapsPlaywrightEnrichment.yaml
@@ -27,7 +27,20 @@ default_range: string
classes:
GoogleMapsPlaywrightEnrichment:
- description: Google Maps data extracted via Playwright browser automation
+ description: >-
+ Google Maps data extracted via Playwright browser automation including
+ place details, ratings, reviews, opening hours, photos, and popular times.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ (an entity) derived from Google Maps via automated extraction
+ - close_mappings includes schema:Place for location/place semantics
+ - related_mappings includes schema:LocalBusiness for business attributes
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:Place
+ related_mappings:
+ - schema:LocalBusiness
attributes:
scrape_timestamp:
range: datetime
diff --git a/schemas/20251121/linkml/modules/classes/GoogleReview.yaml b/schemas/20251121/linkml/modules/classes/GoogleReview.yaml
index 17401b798c..98c0fd5166 100644
--- a/schemas/20251121/linkml/modules/classes/GoogleReview.yaml
+++ b/schemas/20251121/linkml/modules/classes/GoogleReview.yaml
@@ -21,7 +21,23 @@ default_range: string
classes:
GoogleReview:
- description: Google Maps review
+ description: >-
+ Google Maps review for a heritage institution. Contains author
+ information, rating (1-5 stars), review text, and publication
+ timestamp. Used for crowd-sourced quality assessment data.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Review which is the standard Schema.org
+ type for user reviews and ratings
+ - close_mappings includes schema:UserReview (specific review subtype)
+ - related_mappings includes prov:Entity (review as traceable data)
+ and schema:Rating (the numeric rating component)
+ class_uri: schema:Review
+ close_mappings:
+ - schema:UserReview
+ related_mappings:
+ - prov:Entity
+ - schema:Rating
attributes:
author_name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml b/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml
index 4009c2a0a4..824daea5c7 100644
--- a/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/HeritageExperienceEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +22,25 @@ default_range: string
classes:
HeritageExperienceEntry:
- description: Heritage sector specific experience
+ description: >-
+ Heritage sector specific work experience entry. Contains job title,
+ company, relevance assessment, heritage institution type code
+ (A/L/M/etc.), and demonstrated skills. Used for assessing person
+ profiles' heritage sector relevance.
+
+ Ontology mapping rationale:
+ - class_uri is org:Membership because heritage experience represents
+ a person's membership/role within heritage organizations
+ - close_mappings includes schema:OrganizationRole for web semantics
+ compatibility with role-based employment modeling
+ - related_mappings includes prov:Entity (experience as traceable
+ data) and schema:Occupation (the occupation/role held)
+ class_uri: org:Membership
+ close_mappings:
+ - schema:OrganizationRole
+ related_mappings:
+ - prov:Entity
+ - schema:Occupation
attributes:
title:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml b/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
index 1bcd0b0ea2..81afa52607 100644
--- a/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
IsilCodeEntry:
- description: Structured ISIL code entry from Nationaal Archief
+ description: >-
+ Structured ISIL code entry from Nationaal Archief registry containing
+ the ISIL identifier, institution name, assignment date, and remarks.
+
+ Ontology mapping rationale:
+ - class_uri is dcterms:Identifier because ISIL is a standardized
+ identifier for libraries, archives, and similar institutions
+ - close_mappings includes schema:PropertyValue for structured identifier data
+ - related_mappings includes prov:Entity for provenance tracking
+ class_uri: dcterms:Identifier
+ close_mappings:
+ - schema:PropertyValue
+ related_mappings:
+ - prov:Entity
attributes:
code:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/LlmVerification.yaml b/schemas/20251121/linkml/modules/classes/LlmVerification.yaml
index a77a718f47..5cec5cfa68 100644
--- a/schemas/20251121/linkml/modules/classes/LlmVerification.yaml
+++ b/schemas/20251121/linkml/modules/classes/LlmVerification.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -20,8 +21,21 @@ imports:
default_range: string
classes:
- LLMVerification:
- description: LLM-based verification results for enrichment data
+ LlmVerification:
+ description: >-
+ LLM-based verification results for enrichment data including match status,
+ confidence scores, entity type classification, and reasoning explanation.
+
+ Ontology mapping rationale:
+ - class_uri is dqv:QualityMeasurement because this represents a quality
+ assessment/verification measurement of enrichment data
+ - close_mappings includes prov:Activity for the verification activity
+ - related_mappings includes prov:SoftwareAgent for the LLM agent
+ class_uri: dqv:QualityMeasurement
+ close_mappings:
+ - prov:Activity
+ related_mappings:
+ - prov:SoftwareAgent
attributes:
is_match:
range: boolean
diff --git a/schemas/20251121/linkml/modules/classes/LocationResolution.yaml b/schemas/20251121/linkml/modules/classes/LocationResolution.yaml
index 9b7471efe7..ef4b5a18c4 100644
--- a/schemas/20251121/linkml/modules/classes/LocationResolution.yaml
+++ b/schemas/20251121/linkml/modules/classes/LocationResolution.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -24,7 +25,26 @@ default_range: string
classes:
LocationResolution:
- description: Method and result of settlement resolution
+ description: >-
+ Method and result of settlement resolution for GHCID generation.
+ Records how a location was resolved from source data (coordinates,
+ place names, addresses) to a standardized settlement using GeoNames
+ or other authoritative geographic databases.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Location because this class represents the result
+ of resolving/identifying a geographic location, which PROV-O defines
+ as "an identifiable geographic place" with various expression methods
+ - close_mappings includes geo:SpatialThing because the resolution
+ produces spatial extent information (coordinates, feature codes)
+ - related_mappings includes schema:Place (general place concept) and
+ prov:Entity (the resolution result is a traceable entity)
+ class_uri: prov:Location
+ close_mappings:
+ - geo:SpatialThing
+ related_mappings:
+ - schema:Place
+ - prov:Entity
attributes:
method:
range: LocationResolutionMethodEnum
@@ -128,10 +148,7 @@ classes:
description: Whether micro-hamlet was skipped in favor of larger settlement
note:
range: string
- description: Additional note about the resolution
- note:
- range: string
- description: Additional notes about the resolution (alternative key)
+ description: Additional notes about the resolution
text_source:
range: string
description: Text source for fallback resolution (e.g., 'various')
diff --git a/schemas/20251121/linkml/modules/classes/MatchingSource.yaml b/schemas/20251121/linkml/modules/classes/MatchingSource.yaml
index 7519eb528d..55dcb1b45b 100644
--- a/schemas/20251121/linkml/modules/classes/MatchingSource.yaml
+++ b/schemas/20251121/linkml/modules/classes/MatchingSource.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
MatchingSource:
- description: Source that contributed to name consensus
+ description: >-
+ Source that contributed to name consensus during entity resolution.
+ Records the source identifier, the name variant from that source,
+ and a match score indicating confidence in the match.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because matching sources are traceable
+ entities that contribute to entity resolution decisions
+ - close_mappings includes skos:mappingRelation as matching sources
+ establish relationships between name variants across sources
+ - related_mappings includes prov:PrimarySource (sources of evidence)
+ and schema:PropertyValue (source/name/score as property values)
+ class_uri: prov:Entity
+ close_mappings:
+ - skos:mappingRelation
+ related_mappings:
+ - prov:PrimarySource
+ - schema:PropertyValue
attributes:
source:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/MowInscription.yaml b/schemas/20251121/linkml/modules/classes/MowInscription.yaml
index c3cd50917c..de3bdff8b0 100644
--- a/schemas/20251121/linkml/modules/classes/MowInscription.yaml
+++ b/schemas/20251121/linkml/modules/classes/MowInscription.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
MowInscription:
- description: Memory of the World inscription reference
+ description: >-
+ UNESCO Memory of the World (MoW) inscription reference. Contains
+ Wikidata ID, inscription name/title, and associated country code.
+ MoW inscriptions recognize documentary heritage of world significance.
+
+ Ontology mapping rationale:
+ - class_uri is crm:E73_Information_Object from CIDOC-CRM because
+ MoW inscriptions are information objects about documentary heritage
+ - close_mappings includes schema:CreativeWork as inscriptions
+ document creative/documentary works of heritage value
+ - related_mappings includes prov:Entity (inscription reference as
+ data) and crm:E31_Document (documentary heritage concept)
+ class_uri: crm:E73_Information_Object
+ close_mappings:
+ - schema:CreativeWork
+ related_mappings:
+ - prov:Entity
+ - crm:E31_Document
attributes:
wikidata_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml b/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml
index b6e77b546e..807e37d5e9 100644
--- a/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml
+++ b/schemas/20251121/linkml/modules/classes/MunicipalityInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
MunicipalityInfo:
- description: Municipality information
+ description: >-
+ Municipality information representing an administrative division
+ with name and code (e.g., CBS municipality code in the Netherlands).
+
+ Ontology mapping rationale:
+ - class_uri is locn:AdminUnit because this represents an
+ administrative territorial unit (municipality level)
+ - close_mappings includes schema:AdministrativeArea for general admin areas
+ - related_mappings includes schema:Place for location aspects
+ class_uri: locn:AdminUnit
+ close_mappings:
+ - schema:AdministrativeArea
+ related_mappings:
+ - schema:Place
attributes:
name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml b/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml
index 6d9b4edfc9..ebb8030432 100644
--- a/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/MuseumRegisterEnrichment.yaml
@@ -22,7 +22,20 @@ default_range: string
classes:
MuseumRegisterEnrichment:
- description: Dutch Museum Register (Museumregister Nederland) data
+ description: >-
+ Dutch Museum Register (Museumregister Nederland) data including
+ registration status, museum type, collection focus, and visitor statistics.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ derived from the Dutch Museum Register authority
+ - close_mappings includes schema:Museum for museum-specific semantics
+ - related_mappings includes prov:PrimarySource for authoritative registry
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:Museum
+ related_mappings:
+ - prov:PrimarySource
attributes:
museum_name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml b/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
index 978d5738ec..e95cebfc3c 100644
--- a/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
+++ b/schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
MuseumRegisterProvenance:
- description: Provenance metadata for museum register enrichment
+ description: >-
+ Provenance metadata for museum register enrichment including source file,
+ URL, scrape timestamp, and page number in the registry.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents provenance metadata
+ about the museum register data source
+ - close_mappings includes pav:RetrievedFrom for web retrieval provenance
+ - related_mappings includes prov:PrimarySource for source registry
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:RetrievedFrom
+ related_mappings:
+ - prov:PrimarySource
attributes:
source_file:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml b/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
index 20ad65649e..231dc30a9c 100644
--- a/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
@@ -24,7 +24,20 @@ default_range: string
classes:
NanIsilEnrichment:
- description: Nationaal Archief ISIL registry match
+ description: >-
+ Nationaal Archief ISIL registry match containing ISIL codes, institution
+ names, assignment dates, and matching metadata from the Dutch National Archive.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment data
+ derived from the Nationaal Archief ISIL registry (authoritative source)
+ - close_mappings includes dcterms:Identifier for ISIL identifier semantics
+ - related_mappings includes prov:PrimarySource for authoritative registry
+ class_uri: prov:Entity
+ close_mappings:
+ - dcterms:Identifier
+ related_mappings:
+ - prov:PrimarySource
attributes:
source:
range: string
@@ -73,10 +86,7 @@ classes:
description: Remarks
note:
range: string
- description: Additional note about this enrichment
- note:
- range: string
- description: Additional notes about this enrichment (alternative key)
+ description: Additional notes about this enrichment
nan_plaats:
range: string
description: City/place from Nationaal Archief
diff --git a/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml b/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
index e8e563a3b4..716b0128a5 100644
--- a/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
+++ b/schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -23,7 +25,20 @@ default_range: string
classes:
NormalizedLocation:
- description: Normalized geographic location
+ description: >-
+ Normalized geographic location with standardized address components,
+ coordinates, and GeoNames integration for consistent place identification.
+
+ Ontology mapping rationale:
+ - class_uri is locn:Address because this represents a normalized,
+ structured geographic address with standardized components
+ - exact_mappings includes schema:Place as both represent physical locations
+ - close_mappings includes geo:SpatialThing for coordinate-based aspects
+ class_uri: locn:Address
+ exact_mappings:
+ - schema:Place
+ close_mappings:
+ - geo:SpatialThing
attributes:
latitude:
range: float
diff --git a/schemas/20251121/linkml/modules/classes/OpeningHours.yaml b/schemas/20251121/linkml/modules/classes/OpeningHours.yaml
index 69ff9a33b1..7b343cb43c 100644
--- a/schemas/20251121/linkml/modules/classes/OpeningHours.yaml
+++ b/schemas/20251121/linkml/modules/classes/OpeningHours.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -22,7 +23,24 @@ default_range: string
classes:
OpeningHours:
- description: Business opening hours
+ description: >-
+ Business opening hours for heritage institutions. Contains current
+ open/closed status, structured opening periods by day, and human-
+ readable weekday text descriptions.
+
+ Ontology mapping rationale:
+ - class_uri is schema:OpeningHoursSpecification which is the
+ standard Schema.org type for structured opening hours
+ - close_mappings includes time:TemporalEntity from OWL-Time as
+ opening hours define temporal availability
+ - related_mappings includes prov:Entity (opening hours as data)
+ and schema:Place (opening hours belong to places)
+ class_uri: schema:OpeningHoursSpecification
+ close_mappings:
+ - time:TemporalEntity
+ related_mappings:
+ - prov:Entity
+ - schema:Place
attributes:
open_now:
range: boolean
diff --git a/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml b/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml
index bf0af4cfb7..3dda24a058 100644
--- a/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml
+++ b/schemas/20251121/linkml/modules/classes/OpeningPeriod.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -22,7 +23,20 @@ default_range: string
classes:
OpeningPeriod:
- description: Single opening period
+ description: >-
+ Single opening period representing a time window when an institution is
+ accessible, defined by open and close TimeSlot values.
+
+ Ontology mapping rationale:
+ - class_uri is schema:OpeningHoursSpecification because this class represents
+ structured opening hours data with open/close times
+ - exact_mappings includes time:Interval as both represent bounded time periods
+ - related_mappings includes schema:Schedule for broader scheduling context
+ class_uri: schema:OpeningHoursSpecification
+ exact_mappings:
+ - time:Interval
+ related_mappings:
+ - schema:Schedule
attributes:
open:
range: TimeSlot
diff --git a/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml b/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml
index 803e7c4b49..80ca8e1de7 100644
--- a/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml
+++ b/schemas/20251121/linkml/modules/classes/OrganizationalChange.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
OrganizationalChange:
- description: Organizational change record (closure, merger, etc.)
+ description: >-
+ Organizational change record documenting closures, mergers, renames,
+ and other lifecycle events. Includes change type, confirmation status,
+ source documentation, dates, and successor organization details.
+
+ Ontology mapping rationale:
+ - class_uri is org:ChangeEvent from W3C Organization Ontology which
+ specifically models organizational change events
+ - close_mappings includes prov:Activity as changes are activities
+ that transform organizations over time
+ - related_mappings includes schema:Event (general event concept) and
+ prov:Entity (change record as traceable data)
+ class_uri: org:ChangeEvent
+ close_mappings:
+ - prov:Activity
+ related_mappings:
+ - schema:Event
+ - prov:Entity
attributes:
change_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml b/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml
index 3c879de276..f20a489cf2 100644
--- a/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/OriginalEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -31,7 +32,23 @@ default_range: string
classes:
OriginalEntry:
- description: Source registry data from NDE CSV or CH-Annotator
+ description: >-
+ Source registry data from NDE CSV or CH-Annotator extraction,
+ preserving original field names and values as imported from the
+ source system. This is the raw data before normalization.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because original entries represent
+ authoritative source records before transformation.
+ - close_mappings includes dcat:Dataset as source entries form a
+ dataset of registry records.
+ - related_mappings includes prov:Entity for provenance tracking.
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - dcat:Dataset
+ related_mappings:
+ - prov:Entity
+ - schema:DataCatalog
attributes:
unnamed_field:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml b/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
index e67a7bfecb..fb488b1589 100644
--- a/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
+++ b/schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryCoordinates:
- description: Coordinates from original source entry
+ description: >-
+ Geographic coordinates from an original source entry, supporting
+ both lat/lon and latitude/longitude field naming conventions.
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point from W3C WGS84 because coordinates
+ represent a geographic point.
+ - close_mappings includes schema:GeoCoordinates as the Schema.org
+ equivalent for coordinate data.
+ - related_mappings includes prov:Entity and geo:SpatialThing.
+ class_uri: geo:Point
+ close_mappings:
+ - schema:GeoCoordinates
+ related_mappings:
+ - prov:Entity
+ - geo:SpatialThing
attributes:
lat:
range: float
diff --git a/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml b/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
index 3e961611a0..49c8b21e71 100644
--- a/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
+++ b/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryIdentifier:
- description: Identifier from original source entry
+ description: >-
+ Identifier from an original source entry, supporting ISIL, Website,
+ Sigla, VIAF, GND, LCNAF and other identifier schemes.
+
+ Ontology mapping rationale:
+ - class_uri is dcterms:Identifier because this represents a formal
+ identifier with scheme and value.
+ - close_mappings includes schema:PropertyValue as identifiers are
+ property-value pairs.
+ - related_mappings includes prov:Entity for provenance tracking.
+ class_uri: dcterms:Identifier
+ close_mappings:
+ - schema:PropertyValue
+ related_mappings:
+ - prov:Entity
+ - schema:identifier
attributes:
identifier_scheme:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml b/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
index 9867343bf8..da1c41d024 100644
--- a/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
+++ b/schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,8 +22,24 @@ default_range: string
classes:
OriginalEntryIdentifiersDict:
- description: Dictionary-format identifiers from original source (used by Palestinian
- heritage extraction)
+ description: >-
+ Dictionary-format identifiers from original source, used by Palestinian
+ heritage extraction. Contains named identifier fields (VIAF, GND,
+ LCNAF, GeoNames, Wikidata, ISIL, Website) as direct properties.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because the identifier collection is a
+ trackable entity containing multiple identifier values.
+ - close_mappings includes schema:PropertyValueSpecification as this
+ defines a structure of named identifier properties.
+ - related_mappings includes dcterms:Identifier for the individual
+ identifier semantics.
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:PropertyValueSpecification
+ related_mappings:
+ - dcterms:Identifier
+ - schema:PropertyValue
attributes:
viaf:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml b/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
index a760d5c398..fc9ca21c31 100644
--- a/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
+++ b/schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryLocation:
- description: Location from original source entry
+ description: >-
+ Location from an original source entry including city, region, country,
+ postal code, street address, coordinates, and GeoNames ID.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Place because this represents a geographic
+ place with address and coordinate information.
+ - close_mappings includes locn:Address from W3C Locn vocabulary
+ for structured address information.
+ - related_mappings includes prov:Location and geo:SpatialThing.
+ class_uri: schema:Place
+ close_mappings:
+ - locn:Address
+ related_mappings:
+ - prov:Location
+ - geo:SpatialThing
attributes:
city:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml b/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml
index 1c5ac6c722..abb1ae7082 100644
--- a/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml
+++ b/schemas/20251121/linkml/modules/classes/OriginalEntryWikidata.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wikibase: http://wikiba.se/ontology#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
OriginalEntryWikidata:
- description: Wikidata reference from original source
+ description: >-
+ Wikidata reference from an original source entry, including the
+ Q-number ID, URL, multilingual labels, and descriptions.
+
+ Ontology mapping rationale:
+ - class_uri is wikibase:Item because this represents a reference
+ to a Wikidata item (Q-number entity).
+ - close_mappings includes schema:Thing as Wikidata items are
+ general entities with identifiers.
+ - related_mappings includes prov:Entity for tracking.
+ class_uri: wikibase:Item
+ close_mappings:
+ - schema:Thing
+ related_mappings:
+ - prov:Entity
+ - skos:Concept
attributes:
id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/PersonProfile.yaml b/schemas/20251121/linkml/modules/classes/PersonProfile.yaml
index 26f5a0ed2f..4b7d90ca38 100644
--- a/schemas/20251121/linkml/modules/classes/PersonProfile.yaml
+++ b/schemas/20251121/linkml/modules/classes/PersonProfile.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
+ pico: https://personsincontext.org/model#
imports:
- linkml:types
@@ -25,7 +27,27 @@ default_range: string
classes:
PersonProfile:
- description: Complete profile data for a person (heritage professional)
+ class_uri: foaf:PersonalProfileDocument
+ description: >-
+ Complete profile data for a person (heritage professional).
+
+ foaf:PersonalProfileDocument - "A personal profile RDF document."
+
+ This class represents a DOCUMENT containing profile information about a person,
+ not the person themselves. It captures structured data extracted from LinkedIn
+ profiles, staff pages, and other web sources about heritage professionals.
+
+ Mapping rationale:
+ - Uses foaf:PersonalProfileDocument because this is a structured document ABOUT a person
+ - NOT foaf:Person/schema:Person - those represent the actual person entity
+ - Related to pico:PersonObservation which captures person data from historical sources
+ close_mappings:
+ - pico:PersonObservation # Similar: person data from a source, but PiCo is for historical records
+ - schema:ProfilePage # Similar: a web page serving as profile, but our class is data not page
+ related_mappings:
+ - foaf:Person # The subject of this profile document
+ - schema:Person # The subject of this profile document
+ - prov:Entity # A profile is an entity with provenance
attributes:
exa_search_metadata:
range: ExaSearchMetadata
diff --git a/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml b/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
index d4a6af1061..47dcda1f57 100644
--- a/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
+++ b/schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
PhotoAttribution:
- description: Photo author attribution
+ description: >-
+ Photo author attribution containing display name, author URI,
+ and photo URI. Used for crediting photographers in Google Maps
+ and other image sources.
+
+ Ontology mapping rationale:
+ - class_uri is schema:ImageObject because this class describes
+ image attribution which relates to image objects
+ - close_mappings includes dcterms:RightsStatement as attribution
+ is a form of rights/credit statement
+ - related_mappings includes prov:Attribution (provenance attribution)
+ and schema:Person (the attributed author)
+ class_uri: schema:ImageObject
+ close_mappings:
+ - dcterms:RightsStatement
+ related_mappings:
+ - prov:Attribution
+ - schema:Person
attributes:
displayName:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml b/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
index febbbc3546..af40651b84 100644
--- a/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
+++ b/schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
PlatformSourceReference:
- description: Structured source reference for a digital platform
+ description: >-
+ Structured source reference for a digital platform including URL,
+ fetch timestamp, and list of data fields extracted from that source.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because this represents a source
+ reference with provenance metadata for platform data extraction
+ - close_mappings includes pav:RetrievedFrom for web retrieval context
+ - related_mappings includes schema:WebPage for web platform references
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - pav:RetrievedFrom
+ related_mappings:
+ - schema:WebPage
attributes:
url:
range: uri
diff --git a/schemas/20251121/linkml/modules/classes/ProfileData.yaml b/schemas/20251121/linkml/modules/classes/ProfileData.yaml
index b82e360c1d..2beb1b6afe 100644
--- a/schemas/20251121/linkml/modules/classes/ProfileData.yaml
+++ b/schemas/20251121/linkml/modules/classes/ProfileData.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pico: https://w3id.org/pico/
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -28,7 +30,26 @@ default_range: string
classes:
ProfileData:
- description: Core profile information for a person
+ description: >-
+ Core profile information for a person, containing extracted biographical data
+ such as name, career history, education, skills, and professional summary.
+ This represents observed/extracted data ABOUT a person from a source document
+ (e.g., LinkedIn profile), not the person entity itself.
+
+ Ontology mapping rationale:
+ - class_uri is pico:PersonObservation because this represents observed biographical
+ data extracted from a source, following the PiCo pattern of separating observations
+ from person reconstructions
+ - close_mappings includes foaf:PersonalProfileDocument as this is essentially
+ profile document content (though not RDF-specific)
+ - related_mappings includes schema:Person because the data describes a person,
+ and prov:Entity because the profile data participates in provenance chains
+ class_uri: pico:PersonObservation
+ close_mappings:
+ - foaf:PersonalProfileDocument
+ related_mappings:
+ - schema:Person
+ - prov:Entity
attributes:
full_name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml b/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml
index fc7a09505b..b5312e82a8 100644
--- a/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml
+++ b/schemas/20251121/linkml/modules/classes/ProvenanceBlock.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -24,8 +25,25 @@ default_range: string
classes:
ProvenanceBlock:
- description: Complete provenance tracking for the entry (supports both nested and
- flat formats)
+ description: >-
+ Complete provenance tracking for the entry, supporting both nested and flat formats.
+ Contains information about data sources, extraction methods, timestamps, confidence
+ scores, and verification status. This is the primary class for documenting the
+ lineage and quality of data in custodian records.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Bundle because this represents a named set of provenance
+ descriptions bundled together - it's provenance ABOUT provenance/data
+ - close_mappings includes pav:Provenance conceptually as PAV's approach to
+ tracking authoring and versioning provenance
+ - related_mappings includes prov:Entity (the bundle is itself an entity) and
+ prov:Activity (extraction/enrichment are activities with timestamps)
+ class_uri: prov:Bundle
+ close_mappings:
+ - pav:Provenance
+ related_mappings:
+ - prov:Entity
+ - prov:Activity
attributes:
schema_version:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml b/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml
index 76246c40dc..4f84be7b02 100644
--- a/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml
+++ b/schemas/20251121/linkml/modules/classes/ProvenanceSources.yaml
@@ -23,7 +23,21 @@ default_range: string
classes:
ProvenanceSources:
- description: Sources organized by type
+ description: >-
+ Sources organized by type, aggregating multiple source records from different
+ data providers (Google Maps, Wikidata, web archives, etc.) with data tier
+ classification (TIER_1 through TIER_4).
+
+ Ontology mapping rationale:
+ - class_uri is prov:Collection because this aggregates multiple provenance
+ sources into a typed collection structure
+ - close_mappings includes prov:Bundle as it groups related provenance records
+ - related_mappings includes schema:ItemList for list-based organization
+ class_uri: prov:Collection
+ close_mappings:
+ - prov:Bundle
+ related_mappings:
+ - schema:ItemList
attributes:
original_entry:
range: SourceRecord
diff --git a/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml b/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml
index 3987f183cb..69dccebf43 100644
--- a/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml
+++ b/schemas/20251121/linkml/modules/classes/ProvinceInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
ProvinceInfo:
- description: Province information
+ description: >-
+ Province/region administrative information containing name and
+ ISO 3166-2 subdivision code. Used for administrative region
+ identification in location resolution and GHCID generation.
+
+ Ontology mapping rationale:
+ - class_uri is locn:AdminUnit from ISA Location Core Vocabulary
+ which specifically models administrative territorial units
+ - close_mappings includes schema:AdministrativeArea for web
+ semantics compatibility
+ - related_mappings includes prov:Entity (province info as data)
+ and schema:Place (provinces are geographic places)
+ class_uri: locn:AdminUnit
+ close_mappings:
+ - schema:AdministrativeArea
+ related_mappings:
+ - prov:Entity
+ - schema:Place
attributes:
name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/RawSource.yaml b/schemas/20251121/linkml/modules/classes/RawSource.yaml
index 8037501fde..ea209770f3 100644
--- a/schemas/20251121/linkml/modules/classes/RawSource.yaml
+++ b/schemas/20251121/linkml/modules/classes/RawSource.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
RawSource:
- description: Raw source information for web enrichment
+ description: >-
+ Raw source information for web enrichment including URL, fetch timestamp,
+ HTTP status, content hash, and extracted highlights from search results.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because this represents the original
+ source material fetched from the web with full provenance metadata
+ - close_mappings includes pav:RetrievedFrom for web retrieval provenance
+ - close_mappings includes schema:WebPage as it captures web page data
+ - related_mappings includes prov:Entity for general provenance entity
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - pav:RetrievedFrom
+ - schema:WebPage
+ related_mappings:
+ - prov:Entity
attributes:
source_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml b/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml
index 8554363f66..5c3c916fc0 100644
--- a/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml
+++ b/schemas/20251121/linkml/modules/classes/RelatedPlace.yaml
@@ -21,7 +21,20 @@ default_range: string
classes:
RelatedPlace:
- description: A related place from Google Maps
+ description: >-
+ A related place from Google Maps representing nearby or associated
+ locations with ratings and review information.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Place because this represents a physical place
+ with associated review/rating metadata from Google Maps
+ - close_mappings includes schema:LocalBusiness for commercial place aspects
+ - related_mappings includes schema:Review for rating/review data
+ class_uri: schema:Place
+ close_mappings:
+ - schema:LocalBusiness
+ related_mappings:
+ - schema:Review
attributes:
name:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ResearchSource.yaml b/schemas/20251121/linkml/modules/classes/ResearchSource.yaml
index ca3c504225..d74aef1beb 100644
--- a/schemas/20251121/linkml/modules/classes/ResearchSource.yaml
+++ b/schemas/20251121/linkml/modules/classes/ResearchSource.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ cito: http://purl.org/spar/cito/
imports:
- linkml:types
@@ -22,7 +23,25 @@ default_range: string
classes:
ResearchSource:
- description: A research source consulted during location resolution
+ description: >-
+ A research source consulted during location resolution or other
+ investigative processes. Records the type of source (Wikidata,
+ web archive, official documents), identifiers, URLs, and any
+ structured data obtained from consultation.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because research sources are
+ primary sources of information consulted during resolution
+ - close_mappings includes cito:CitationAct as consulting a source
+ is similar to citing it for evidence
+ - related_mappings includes schema:CreativeWork (sources are works)
+ and prov:Entity (sources are traceable entities)
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - cito:CitationAct
+ related_mappings:
+ - schema:CreativeWork
+ - prov:Entity
attributes:
type:
range: string
@@ -37,9 +56,6 @@ classes:
note:
range: string
description: Additional notes about this source
- note:
- range: string
- description: Additional note about this source (singular alias for notes)
id:
range: string
description: Identifier for the source (e.g., Wikidata Q-number)
diff --git a/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml b/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
index 6dfac722ba..787318409d 100644
--- a/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
+++ b/schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
SourceCoordinates:
- description: Source of coordinates for resolution
+ description: >-
+ Source of coordinates for geographic resolution, combining latitude/longitude
+ values with the data source that provided them (e.g., google_maps, wikidata).
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point because this represents a geographic point with
+ lat/lon coordinates
+ - exact_mappings includes schema:GeoCoordinates as both represent coordinate pairs
+ - close_mappings includes prov:Location for provenance-aware location data
+ class_uri: geo:Point
+ exact_mappings:
+ - schema:GeoCoordinates
+ close_mappings:
+ - prov:Location
attributes:
latitude:
range: float
diff --git a/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml b/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
index c53c62b2c5..793e2b33bd 100644
--- a/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
+++ b/schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
SourceProvenance:
- description: Detailed provenance information about a source
+ description: >-
+ Detailed provenance information about a source including file location
+ metadata such as CSV row numbers, YAML array indices, and file paths.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents provenance metadata
+ about a source (the source as an entity with location details)
+ - close_mappings includes pav:SourceAccessedAt for source access provenance
+ - related_mappings includes schema:PropertyValue for structured metadata
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - schema:PropertyValue
attributes:
csv_row_number:
range: integer
diff --git a/schemas/20251121/linkml/modules/classes/SourceRecord.yaml b/schemas/20251121/linkml/modules/classes/SourceRecord.yaml
index 928ed338ac..5389df205e 100644
--- a/schemas/20251121/linkml/modules/classes/SourceRecord.yaml
+++ b/schemas/20251121/linkml/modules/classes/SourceRecord.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -22,7 +24,24 @@ default_range: string
classes:
SourceRecord:
- description: Individual source record with claims
+ description: >-
+ Individual source record with claims, representing a data extraction from a specific
+ source (API, registry, web scrape, etc.). Contains metadata about the source type,
+ data tier, fetch timestamp, and extracted claims. Used to track provenance of
+ individual data points.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents a discrete data entity with
+ provenance (when fetched, from where, by what method)
+ - close_mappings includes dcat:Distribution as this is similar to a specific
+ manifestation/representation of data from a source
+ - related_mappings includes pav:retrievedFrom conceptually (the source was retrieved)
+ and prov:PrimarySource (the record may be from a primary source)
+ class_uri: prov:Entity
+ close_mappings:
+ - dcat:Distribution
+ related_mappings:
+ - prov:PrimarySource
attributes:
source_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/SourceReference.yaml b/schemas/20251121/linkml/modules/classes/SourceReference.yaml
index 0f533a5930..01952129c5 100644
--- a/schemas/20251121/linkml/modules/classes/SourceReference.yaml
+++ b/schemas/20251121/linkml/modules/classes/SourceReference.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +23,22 @@ default_range: string
classes:
SourceReference:
- description: Structured source reference for a claim
+ description: >-
+ Structured source reference for a claim with text position information
+ including excerpts, character offsets, and relevance scores.
+
+ Ontology mapping rationale:
+ - class_uri is oa:TextPositionSelector because this class specifies
+ exact text positions (char_start, char_end) within a source document
+ - close_mappings includes prov:PrimarySource as it references source material
+ - close_mappings includes dcterms:BibliographicResource for citation context
+ - related_mappings includes schema:Quotation for text excerpt functionality
+ class_uri: oa:TextPositionSelector
+ close_mappings:
+ - prov:PrimarySource
+ - dcterms:BibliographicResource
+ related_mappings:
+ - schema:Quotation
attributes:
source_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml b/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml
index fca162096d..9ec6d6d79e 100644
--- a/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/SourceStaffEntry.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
SourceStaffEntry:
- description: Reference to original staff entry
+ description: >-
+ Reference to original staff entry from custodian staff parsing.
+ Contains staff identifier, name, academic degree, professional
+ headline, LinkedIn URL, and heritage relevance assessment.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is a reference to source
+ data about staff, not the person themselves
+ - close_mappings includes foaf:Person as the entry describes
+ attributes of a person
+ - related_mappings includes schema:Person (person semantics) and
+ prov:PrimarySource (reference to original staff data)
+ class_uri: prov:Entity
+ close_mappings:
+ - foaf:Person
+ related_mappings:
+ - schema:Person
+ - prov:PrimarySource
attributes:
staff_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/TimeEntry.yaml b/schemas/20251121/linkml/modules/classes/TimeEntry.yaml
index a53ac7f58a..3c2671f506 100644
--- a/schemas/20251121/linkml/modules/classes/TimeEntry.yaml
+++ b/schemas/20251121/linkml/modules/classes/TimeEntry.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +24,20 @@ default_range: string
classes:
TimeEntry:
- description: Structured time entry from source data
+ description: >-
+ Structured time entry from source data representing a temporal point or marker
+ with an associated label and type classification.
+
+ Ontology mapping rationale:
+ - class_uri is time:Instant because TimeEntry represents a single point in time
+ (a date or year) rather than a duration or interval
+ - close_mappings includes schema:DateTime as it represents structured temporal data
+ - related_mappings includes crm:E52_Time-Span for CIDOC-CRM alignment
+ class_uri: time:Instant
+ close_mappings:
+ - schema:DateTime
+ related_mappings:
+ - crm:E52_Time-Span
attributes:
label:
any_of:
diff --git a/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml b/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml
index 1550590903..6e735fc521 100644
--- a/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml
+++ b/schemas/20251121/linkml/modules/classes/TimeEntryType.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +23,20 @@ default_range: string
classes:
TimeEntryType:
- description: Type classification for time entry
+ description: >-
+ Type classification for time entry specifying the semantic role of a temporal
+ point (e.g., begin, end, founded, dissolved).
+
+ Ontology mapping rationale:
+ - class_uri is skos:Concept because this represents a controlled vocabulary
+ term classifying the type/role of a time entry
+ - close_mappings includes time:TemporalEntity as it categorizes temporal concepts
+ - related_mappings includes schema:PropertyValue for structured type data
+ class_uri: skos:Concept
+ close_mappings:
+ - time:TemporalEntity
+ related_mappings:
+ - schema:PropertyValue
attributes:
label:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/TimeSlot.yaml b/schemas/20251121/linkml/modules/classes/TimeSlot.yaml
index dafd7e71ac..2ba5f4d171 100644
--- a/schemas/20251121/linkml/modules/classes/TimeSlot.yaml
+++ b/schemas/20251121/linkml/modules/classes/TimeSlot.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +22,20 @@ default_range: string
classes:
TimeSlot:
- description: Day and time specification
+ description: >-
+ Day and time specification representing a specific point within a weekly
+ schedule, consisting of day of week, hour, and minute.
+
+ Ontology mapping rationale:
+ - class_uri is time:Instant because TimeSlot represents a specific moment
+ (day + hour + minute) within a recurring weekly pattern
+ - exact_mappings includes schema:Time as both represent time-of-day specifications
+ - related_mappings includes schema:OpeningHoursSpecification for schedule context
+ class_uri: time:Instant
+ exact_mappings:
+ - schema:Time
+ related_mappings:
+ - schema:OpeningHoursSpecification
attributes:
day:
range: integer
diff --git a/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml b/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
index 080584f583..9fc93ae734 100644
--- a/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
+++ b/schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -21,7 +23,22 @@ default_range: string
classes:
TimespanBlock:
- description: CRMsci E52 Time-Span temporal bounds
+ description: >-
+ CIDOC-CRM E52 Time-Span temporal bounds with four-point fuzzy temporal
+ representation (begin_of_the_begin, end_of_the_begin, begin_of_the_end,
+ end_of_the_end) to handle uncertain or approximate temporal boundaries.
+
+ Ontology mapping rationale:
+ - class_uri is crm:E52_Time-Span because this class directly implements
+ the CIDOC-CRM fuzzy temporal bounds pattern for cultural heritage data
+ - exact_mappings includes time:ProperInterval as both represent durations
+ with explicit start and end bounds
+ - related_mappings includes schema:Schedule for general temporal structuring
+ class_uri: crm:E52_Time-Span
+ exact_mappings:
+ - time:ProperInterval
+ related_mappings:
+ - schema:Schedule
attributes:
begin_of_the_begin:
range: datetime
diff --git a/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml b/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml
index 4552621079..95c786768d 100644
--- a/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/UnescoIchEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +23,24 @@ default_range: string
classes:
UnescoIchEnrichment:
- description: UNESCO Intangible Cultural Heritage elements for country
+ description: >-
+ UNESCO Intangible Cultural Heritage (ICH) elements for a country.
+ Contains the country code, total element count, enrichment timestamp,
+ and list of individual ICH elements inscribed on UNESCO lists.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is enrichment data extracted
+ from UNESCO ICH registry, not the heritage elements themselves
+ - close_mappings includes crm:E89_Propositional_Object as ICH
+ elements are conceptual/propositional cultural assets
+ - related_mappings includes schema:Dataset (collection of elements)
+ and prov:Collection (grouped provenance entities)
+ class_uri: prov:Entity
+ close_mappings:
+ - crm:E89_Propositional_Object
+ related_mappings:
+ - schema:Dataset
+ - prov:Collection
attributes:
country_code:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml b/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml
index b7a58e2f45..3cb9ffcb64 100644
--- a/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml
+++ b/schemas/20251121/linkml/modules/classes/ValidationMetadata.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ shacl: http://www.w3.org/ns/shacl#
+ dqv: http://www.w3.org/ns/dqv#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
ValidationMetadata:
- description: Metadata about claim validation
+ description: >-
+ Metadata about claim validation including model, convention,
+ timestamp, and results. Records the outcome of validating
+ extracted claims against quality criteria or schema constraints.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Activity because validation is an activity
+ that operates on entities and produces validation results
+ - close_mappings includes dqv:QualityMeasurement as validation
+ produces quality assessments of data
+ - related_mappings includes shacl:ValidationResult (SHACL validation
+ outputs) and prov:Entity (validation metadata is itself an entity)
+ class_uri: prov:Activity
+ close_mappings:
+ - dqv:QualityMeasurement
+ related_mappings:
+ - shacl:ValidationResult
+ - prov:Entity
attributes:
model:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml b/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
index e185702618..d0494ff00f 100644
--- a/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -28,7 +29,24 @@ default_range: string
classes:
WebEnrichment:
- description: Web archive metadata
+ description: >-
+ Web archive metadata and enrichment data extracted from institutional websites.
+ This class captures web scraping results, archived pages, extracted claims,
+ domain registration info, and organizational status discovered through web research.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment DATA with provenance
+ (timestamps, methods, sources), not the institution or website itself
+ - close_mappings includes pav:SourceAccessedAt because this captures when/how
+ a web source was accessed and archived
+ - related_mappings includes schema:WebPage because the enrichment is derived from
+ web pages, though this class models the extracted data not the page itself
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - schema:WebPage
+ - prov:Derivation
attributes:
web_archives:
range: WebArchive
diff --git a/schemas/20251121/linkml/modules/classes/WebSource.yaml b/schemas/20251121/linkml/modules/classes/WebSource.yaml
index 519ea77057..691f6084a3 100644
--- a/schemas/20251121/linkml/modules/classes/WebSource.yaml
+++ b/schemas/20251121/linkml/modules/classes/WebSource.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
WebSource:
- description: Web source used for profile compilation
+ description: >-
+ Web source used for profile compilation, representing a URL that was consulted
+ or accessed during data extraction. This class captures the reference to an
+ online resource (URL, title, access date) from which information was derived.
+
+ Ontology mapping rationale:
+ - class_uri is dcat:Resource because this represents a web resource that provides
+ data, aligning with DCAT's concept of resources in a data context
+ - close_mappings includes pav:sourceAccessedAt conceptually (though that's a property,
+ not class) - this class models the same semantic: a source that was consulted
+ - related_mappings includes schema:WebPage as the source is typically a web page,
+ and prov:Entity because it participates in provenance chains
+ class_uri: dcat:Resource
+ close_mappings:
+ - schema:WebPage
+ related_mappings:
+ - prov:Entity
+ - schema:CreativeWork
attributes:
url:
range: uri
diff --git a/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml b/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml
index c950d68b15..efecc04c37 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataApiMetadata.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ http: http://www.w3.org/2011/http#
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
WikidataApiMetadata:
- description: API call metadata
+ description: >-
+ Metadata about Wikidata API calls including endpoint, timestamp,
+ authentication status, response metrics, and rate limiting information.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Activity because an API call is an activity that
+ retrieves data from Wikidata.
+ - close_mappings includes http:Request from W3C HTTP Vocabulary as
+ API calls are HTTP requests.
+ - related_mappings includes schema:Action as an API call is an action
+ with inputs and outputs.
+ class_uri: prov:Activity
+ close_mappings:
+ - http:Request
+ related_mappings:
+ - schema:Action
+ - prov:Entity
attributes:
has_or_had_api_endpoint:
range: uri
diff --git a/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml b/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
index 83464614b4..9f9395be1d 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +23,24 @@ default_range: string
classes:
WikidataArchitecture:
- description: Architecture-related Wikidata properties
+ description: >-
+ Architecture-related properties extracted from Wikidata including
+ architects (P84), architectural styles (P149), and structural
+ engineers (P631). Used for heritage buildings and cultural sites.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is an extracted data bundle
+ about architectural attributes, not a building itself
+ - close_mappings includes crm:E22_Human-Made_Object as architectural
+ properties relate to designed physical structures
+ - related_mappings includes schema:Place (architecture relates to
+ places) and crm:E7_Activity (design/construction activities)
+ class_uri: prov:Entity
+ close_mappings:
+ - crm:E22_Human-Made_Object
+ related_mappings:
+ - schema:Place
+ - crm:E7_Activity
attributes:
has_or_had_architect:
range: WikidataEntity
diff --git a/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml b/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml
index 87293df686..0567f0f567 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataClassification.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ skos: http://www.w3.org/2004/02/skos/core#
+ wikibase: http://wikiba.se/ontology#
imports:
- linkml:types
@@ -22,7 +24,23 @@ default_range: string
classes:
WikidataClassification:
- description: Classification properties
+ description: >-
+ Classification properties from Wikidata including instance_of (P31),
+ field_of_work (P101), heritage_designation (P1435), and main_subject (P921).
+
+ Ontology mapping rationale:
+ - class_uri is skos:Concept because classification represents conceptual
+ categorization of entities.
+ - close_mappings includes wikibase:Statement as Wikidata classifications
+ are statements about entities.
+ - related_mappings includes prov:Entity as classifications are tracked
+ data entities.
+ class_uri: skos:Concept
+ close_mappings:
+ - wikibase:Statement
+ related_mappings:
+ - prov:Entity
+ - schema:CategoryCode
attributes:
instance_of:
range: WikidataEntity
diff --git a/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml b/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml
index eca6f80926..5525b63eb5 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataCollectionInfo.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ bf: http://id.loc.gov/ontologies/bibframe/
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
WikidataCollectionInfo:
- description: Collection information from Wikidata (flat structure)
+ description: >-
+ Collection information from Wikidata in a flat structure, capturing
+ collection item counts and related metrics.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Collection because this describes collection-level
+ information from Wikidata.
+ - close_mappings includes bf:Collection from BIBFRAME as an equivalent
+ bibliographic collection concept.
+ - related_mappings includes prov:Entity as collection info is tracked data.
+ class_uri: schema:Collection
+ close_mappings:
+ - bf:Collection
+ related_mappings:
+ - prov:Entity
+ - schema:QuantitativeValue
attributes:
collection_items_count:
any_of:
diff --git a/schemas/20251121/linkml/modules/classes/WikidataContact.yaml b/schemas/20251121/linkml/modules/classes/WikidataContact.yaml
index a8aecef56f..6c54e8ad3b 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataContact.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataContact.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ vcard: http://www.w3.org/2006/vcard/ns#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataContact:
- description: Contact information from Wikidata
+ description: >-
+ Contact information extracted from Wikidata including phone numbers
+ (P1329), email addresses (P968), and fax numbers (P2900). Supports
+ multiple values for phone and email fields.
+
+ Ontology mapping rationale:
+ - class_uri is schema:ContactPoint because this class aggregates
+ contact details (phone, email, fax) as Schema.org defines
+ - close_mappings includes vcard:Contact from vCard ontology which
+ serves similar purpose for contact information modeling
+ - related_mappings includes prov:Entity (traceable contact data)
+ and schema:Organization (contact info typically belongs to orgs)
+ class_uri: schema:ContactPoint
+ close_mappings:
+ - vcard:Contact
+ related_mappings:
+ - prov:Entity
+ - schema:Organization
attributes:
phone_number:
any_of:
diff --git a/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml b/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
index 3fab8b8b83..f90722c583 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
+ wikibase: http://wikiba.se/ontology#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
WikidataCoordinates:
- description: Coordinates from Wikidata P625
+ description: >-
+ Coordinates from Wikidata P625 (coordinate location property).
+ Includes latitude, longitude, precision level, and reference globe.
+ Precision indicates the accuracy of coordinates (e.g., to nearest degree).
+
+ Ontology mapping rationale:
+ - class_uri is geo:Point because coordinates represent a specific
+ point in WGS84 coordinate reference system
+ - close_mappings includes wikibase:GlobecoordinateValue which is
+ Wikidata's native coordinate value type
+ - related_mappings includes schema:GeoCoordinates (web semantics)
+ and prov:Entity (coordinates are traceable data)
+ class_uri: geo:Point
+ close_mappings:
+ - wikibase:GlobecoordinateValue
+ related_mappings:
+ - schema:GeoCoordinates
+ - prov:Entity
attributes:
latitude:
range: float
diff --git a/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml b/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml
index f173df5cd1..c647f41b68 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wd: http://www.wikidata.org/entity/
imports:
- linkml:types
@@ -44,7 +45,25 @@ default_range: string
classes:
WikidataEnrichment:
- description: Full Wikidata enrichment data
+ description: >-
+ Full Wikidata enrichment data extracted from Wikidata SPARQL/API for a heritage custodian.
+ This class represents derived data (prov:Entity) where Wikidata serves as the primary source.
+ The enrichment captures labels, descriptions, identifiers, coordinates, temporal data,
+ classification, and other structured claims from the Wikidata knowledge graph.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this represents enrichment DATA with provenance,
+ not the heritage institution itself (which is modeled by Custodian class)
+ - close_mappings includes prov:PrimarySource because Wikidata functions as a
+ primary/authoritative source for linked open data
+ - related_mappings includes prov:Derivation because the enrichment is derived from
+ Wikidata through API queries
+ class_uri: prov:Entity
+ close_mappings:
+ - prov:PrimarySource
+ related_mappings:
+ - prov:Derivation
+ - wd:Q2013
attributes:
wikidata_entity_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml b/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml
index 61383b07f8..da1a5167c6 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataEntity.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wikibase: http://wikiba.se/ontology#
+ wd: http://www.wikidata.org/entity/
imports:
- linkml:types
@@ -21,7 +23,23 @@ default_range: string
classes:
WikidataEntity:
- description: Reference to a Wikidata entity
+ description: >-
+ Reference to a Wikidata entity (Q-item), including Q-number identifier,
+ multilingual labels (en/nl), descriptions, and instance_of classifications.
+
+ Ontology mapping rationale:
+ - class_uri is wikibase:Item because this represents a Wikidata item
+ (Q-number entity) in the Wikibase data model.
+ - close_mappings includes schema:Thing as Wikidata items are general
+ things with identifiers and labels.
+ - related_mappings includes prov:Entity as Wikidata entities are
+ provenance-trackable.
+ class_uri: wikibase:Item
+ close_mappings:
+ - schema:Thing
+ related_mappings:
+ - prov:Entity
+ - skos:Concept
attributes:
id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml b/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
index 646cf4308d..82d3aac81d 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ geo: http://www.w3.org/2003/01/geo/wgs84_pos#
+ locn: http://www.w3.org/ns/locn#
imports:
- linkml:types
@@ -23,7 +25,24 @@ default_range: string
classes:
WikidataLocation:
- description: Location properties from Wikidata
+ description: >-
+ Location properties extracted from Wikidata including country (P17),
+ headquarters location (P159), coordinates (P625), administrative
+ entity (P131), postal code (P281), and adjacent buildings (P3032).
+
+ Ontology mapping rationale:
+ - class_uri is schema:Place because location properties describe
+ a geographic place.
+ - close_mappings includes locn:Address from W3C Locn as this captures
+ structured location information.
+ - related_mappings includes geo:SpatialThing for coordinate data
+ and prov:Location for provenance context.
+ class_uri: schema:Place
+ close_mappings:
+ - locn:Address
+ related_mappings:
+ - geo:SpatialThing
+ - prov:Location
attributes:
country_reference:
any_of:
diff --git a/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml b/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
index a231419a25..e88b3bbfbe 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
+ dcterms: http://purl.org/dc/terms/
imports:
- linkml:types
@@ -21,7 +23,23 @@ default_range: string
classes:
WikidataMedia:
- description: Media files from Wikidata
+ description: >-
+ Media files from Wikidata including images (P18), logos (P154),
+ Commons categories (P373), galleries (P935), coat of arms (P94),
+ and flag images (P41).
+
+ Ontology mapping rationale:
+ - class_uri is schema:MediaObject because this represents media
+ file references from Wikidata/Commons.
+ - close_mappings includes foaf:Image as many properties are images.
+ - related_mappings includes dcterms:MediaType for media classification
+ and prov:Entity as media references are tracked entities.
+ class_uri: schema:MediaObject
+ close_mappings:
+ - foaf:Image
+ related_mappings:
+ - dcterms:MediaType
+ - prov:Entity
attributes:
image:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml b/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml
index 5480ed7dbb..c0f7c32371 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataOrganization.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ org: http://www.w3.org/ns/org#
+ wd: http://www.wikidata.org/entity/
imports:
- linkml:types
@@ -22,7 +24,23 @@ default_range: string
classes:
WikidataOrganization:
- description: Organizational properties
+ description: >-
+ Organizational properties extracted from Wikidata, including
+ hierarchical relationships (part_of, parent_organization, subsidiary),
+ governance (chairperson, CEO), and membership affiliations.
+
+ Ontology mapping rationale:
+ - class_uri is org:Organization because this class represents
+ organizational entity data from Wikidata aligned with W3C Org
+ - close_mappings includes schema:Organization for web semantics
+ - related_mappings includes prov:Entity (traceable data unit) and
+ wd:Q43229 (Wikidata's concept of organization)
+ class_uri: org:Organization
+ close_mappings:
+ - schema:Organization
+ related_mappings:
+ - prov:Entity
+ - wd:Q43229
attributes:
part_of:
range: WikidataEntity
diff --git a/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml b/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml
index 9b49a048c4..d5e9cf68fe 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataRecognition.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ crm: http://www.cidoc-crm.org/cidoc-crm/
imports:
- linkml:types
@@ -22,7 +23,25 @@ default_range: string
classes:
WikidataRecognition:
- description: Awards and recognition from Wikidata
+ description: >-
+ Awards and recognition information extracted from Wikidata,
+ particularly the award received property (P166). Used to track
+ honors, certifications, and formal recognition received by
+ heritage institutions.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because this is extracted recognition
+ data, not the recognition/award event itself
+ - close_mappings includes schema:AggregateRating as recognition
+ data provides a form of institutional quality assessment
+ - related_mappings includes crm:E7_Activity (award ceremonies are
+ activities) and schema:Organization (awards are given to orgs)
+ class_uri: prov:Entity
+ close_mappings:
+ - schema:AggregateRating
+ related_mappings:
+ - crm:E7_Activity
+ - schema:Organization
attributes:
award_received:
range: WikidataEntity
diff --git a/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml b/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml
index 27456b49eb..352bb962a8 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataSocialMedia.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataSocialMedia:
- description: Social media identifiers
+ description: >-
+ Social media identifiers and metrics extracted from Wikidata.
+ Includes platform-specific usernames/IDs for Instagram, LinkedIn,
+ Twitter/X, Facebook, YouTube, plus aggregate follower counts (P8687).
+
+ Ontology mapping rationale:
+ - class_uri is foaf:OnlineAccount because social media profiles
+ are online accounts as defined by FOAF
+ - close_mappings includes schema:ProfilePage as social media
+ accounts manifest as profile pages
+ - related_mappings includes prov:Entity (traceable data) and
+ schema:Organization (social accounts belong to organizations)
+ class_uri: foaf:OnlineAccount
+ close_mappings:
+ - schema:ProfilePage
+ related_mappings:
+ - prov:Entity
+ - schema:Organization
attributes:
instagram_username:
any_of:
diff --git a/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml b/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml
index a121e1617d..158b54ab78 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataTemporal.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataTemporal:
- description: Temporal properties from Wikidata
+ description: >-
+ Temporal properties extracted from Wikidata including inception (P571),
+ dissolution (P576), official opening (P1619), and activity time spans
+ (P580/P582). Captures key dates in organizational lifecycle.
+
+ Ontology mapping rationale:
+ - class_uri is time:TemporalEntity from OWL-Time because this class
+ aggregates temporal properties defining existence/activity periods
+ - close_mappings includes prov:InstantaneousEvent as dates mark
+ discrete events in time (founding, dissolution, opening)
+ - related_mappings includes schema:Event (lifecycle events) and
+ prov:Entity (temporal data as traceable entity)
+ class_uri: time:TemporalEntity
+ close_mappings:
+ - prov:InstantaneousEvent
+ related_mappings:
+ - schema:Event
+ - prov:Entity
attributes:
inception:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml b/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml
index c4d298e2ab..afb1418433 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataTimeValue.yaml
@@ -12,6 +12,8 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ wikibase: http://wikiba.se/ontology#
+ time: http://www.w3.org/2006/time#
imports:
- linkml:types
@@ -21,7 +23,24 @@ default_range: string
classes:
WikidataTimeValue:
- description: Wikidata time value with precision metadata
+ description: >-
+ Wikidata time value with precision metadata. Records temporal
+ information in ISO 8601 format along with precision level
+ (9=year, 10=month, 11=day) and calendar model (typically Gregorian).
+
+ Ontology mapping rationale:
+ - class_uri is wikibase:TimeValue because this directly represents
+ Wikidata's native time value datatype with precision
+ - close_mappings includes time:Instant from OWL-Time as both
+ represent points in time (though TimeValue adds precision)
+ - related_mappings includes xsd:dateTime (base type) and
+ prov:InstantaneousEvent (provenance temporal marker)
+ class_uri: wikibase:TimeValue
+ close_mappings:
+ - time:Instant
+ related_mappings:
+ - xsd:dateTime
+ - prov:InstantaneousEvent
attributes:
time:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml b/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml
index 990340649e..ec541b2ffc 100644
--- a/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml
+++ b/schemas/20251121/linkml/modules/classes/WikidataWeb.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,24 @@ default_range: string
classes:
WikidataWeb:
- description: Web presence from Wikidata
+ description: >-
+ Web presence information extracted from Wikidata including official
+ website URLs (P856), description URLs (P973), and official blog URLs
+ (P1581). Supports multiple URLs per property.
+
+ Ontology mapping rationale:
+ - class_uri is schema:WebSite because this class aggregates
+ web presence information (websites, blogs, description pages)
+ - close_mappings includes foaf:Document as web pages are documents
+ in the FOAF sense (information resources)
+ - related_mappings includes prov:Entity (traceable web data) and
+ schema:Organization (web presence belongs to organizations)
+ class_uri: schema:WebSite
+ close_mappings:
+ - foaf:Document
+ related_mappings:
+ - prov:Entity
+ - schema:Organization
attributes:
official_website:
any_of:
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml b/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml
index 02002a85a5..c6472e7cea 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeChannel.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
YoutubeChannel:
- description: YouTube channel metadata
+ description: >-
+ YouTube channel metadata including channel ID, title, description,
+ subscriber/video/view counts, country code, and branding URLs.
+
+ Ontology mapping rationale:
+ - class_uri is schema:BroadcastChannel because a YouTube channel is
+ a broadcast channel for video content distribution.
+ - close_mappings includes foaf:OnlineAccount as a channel represents
+ an online account on YouTube.
+ - related_mappings includes schema:Organization as channels often
+ represent institutional presence, and prov:Entity for tracking.
+ class_uri: schema:BroadcastChannel
+ close_mappings:
+ - foaf:OnlineAccount
+ related_mappings:
+ - schema:Organization
+ - prov:Entity
attributes:
channel_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml b/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml
index ac6369ae35..7865caa16f 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeComment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ sioc: http://rdfs.org/sioc/ns#
imports:
- linkml:types
@@ -21,7 +22,22 @@ default_range: string
classes:
YoutubeComment:
- description: YouTube video comment
+ description: >-
+ YouTube video comment including comment ID, author information,
+ text content, like count, and timestamps.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Comment because this represents user-generated
+ comment content on YouTube videos.
+ - close_mappings includes sioc:Post from SIOC (Semantically-Interlinked
+ Online Communities) as a comment is a type of online post.
+ - related_mappings includes prov:Entity for tracking comment provenance.
+ class_uri: schema:Comment
+ close_mappings:
+ - sioc:Post
+ related_mappings:
+ - prov:Entity
+ - schema:UserComments
attributes:
comment_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml b/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml
index eff3363103..6bfb93eaa4 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeEnrichment.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ dcat: http://www.w3.org/ns/dcat#
imports:
- linkml:types
@@ -27,8 +28,24 @@ default_range: string
classes:
YoutubeEnrichment:
- description: YouTube channel and video data for the institution (supports both flat
- and nested formats)
+ description: >-
+ YouTube channel and video data for a heritage institution, supporting
+ both flat and nested data formats. Includes channel metadata, videos,
+ social links, and LLM verification results.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because YouTube enrichment data is a
+ provenance-tracked entity derived from YouTube API.
+ - close_mappings includes dcat:Dataset as the enrichment represents
+ a dataset of YouTube information.
+ - related_mappings includes schema:BroadcastChannel for the channel
+ aspect and prov:Collection for the video collection.
+ class_uri: prov:Entity
+ close_mappings:
+ - dcat:Dataset
+ related_mappings:
+ - schema:BroadcastChannel
+ - prov:Collection
attributes:
source_url:
range: uri
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml b/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
index d9b29c2336..df964239ac 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ pav: http://purl.org/pav/
imports:
- linkml:types
@@ -22,7 +23,22 @@ default_range: string
classes:
YoutubeProvenance:
- description: Provenance information for YouTube enrichment
+ description: >-
+ Provenance information for YouTube enrichment including source URL,
+ extraction method, timestamp, and data quality tier.
+
+ Ontology mapping rationale:
+ - class_uri is prov:Entity because provenance metadata is itself a
+ trackable entity describing data origins.
+ - close_mappings includes pav:SourceAccessedAt to capture the access
+ point and timing of YouTube data retrieval.
+ - related_mappings includes prov:Activity as extraction is an activity.
+ class_uri: prov:Entity
+ close_mappings:
+ - pav:SourceAccessedAt
+ related_mappings:
+ - prov:Activity
+ - prov:Generation
attributes:
source_url:
range: uri
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml b/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml
index 99d39bfd56..5969574a3e 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeSocialLink.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ foaf: http://xmlns.com/foaf/0.1/
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
YoutubeSocialLink:
- description: Social media link from YouTube channel
+ description: >-
+ Social media link from a YouTube channel's about page, linking to
+ external platforms like Website, Facebook, Twitter, Instagram, etc.
+
+ Ontology mapping rationale:
+ - class_uri is schema:WebPage because a social link points to a
+ web page on another platform.
+ - close_mappings includes foaf:OnlineAccount as social links often
+ point to social media accounts.
+ - related_mappings includes prov:Entity for tracking and schema:URL
+ for the link structure.
+ class_uri: schema:WebPage
+ close_mappings:
+ - foaf:OnlineAccount
+ related_mappings:
+ - prov:Entity
+ - schema:URL
attributes:
platform:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml b/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml
index 049bc5d7a8..471adc3d75 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeSourceRecord.yaml
@@ -22,7 +22,22 @@ default_range: string
classes:
YoutubeSourceRecord:
- description: YouTube source record for provenance tracking
+ description: >-
+ YouTube source record for provenance tracking, documenting API calls,
+ data tier, claims extracted, and any misattribution corrections.
+
+ Ontology mapping rationale:
+ - class_uri is prov:PrimarySource because this represents a primary
+ source record from the YouTube Data API.
+ - close_mappings includes prov:Entity as source records are trackable
+ provenance entities.
+ - related_mappings includes prov:Revision for correction tracking.
+ class_uri: prov:PrimarySource
+ close_mappings:
+ - prov:Entity
+ related_mappings:
+ - prov:Revision
+ - prov:Activity
attributes:
source_type:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml b/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
index 43da9236ed..b8384a5984 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
@@ -12,6 +12,7 @@ prefixes:
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
xsd: http://www.w3.org/2001/XMLSchema#
+ oa: http://www.w3.org/ns/oa#
imports:
- linkml:types
@@ -21,7 +22,23 @@ default_range: string
classes:
YoutubeTranscript:
- description: YouTube video transcript
+ description: >-
+ YouTube video transcript including video ID, language, transcript type
+ (manual or auto-generated), full text, and extraction metadata.
+
+ Ontology mapping rationale:
+ - class_uri is schema:Transcript because this represents a textual
+ transcript of video/audio content.
+ - close_mappings includes oa:TextualBody as the transcript text
+ forms annotation body content.
+ - related_mappings includes prov:Entity for tracking and schema:MediaObject
+ as transcripts derive from media.
+ class_uri: schema:Transcript
+ close_mappings:
+ - oa:TextualBody
+ related_mappings:
+ - prov:Entity
+ - schema:MediaObject
attributes:
video_id:
range: string
diff --git a/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml b/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml
index 4f801b23b4..f061176abd 100644
--- a/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml
+++ b/schemas/20251121/linkml/modules/classes/YoutubeVideo.yaml
@@ -23,7 +23,24 @@ default_range: string
classes:
YoutubeVideo:
- description: Individual YouTube video metadata
+ description: >-
+ Individual YouTube video metadata including video ID, title, description,
+ view/like/comment counts, duration, thumbnail, tags, and associated
+ comments and transcripts.
+
+ Ontology mapping rationale:
+ - class_uri is schema:VideoObject because this represents a video
+ as a media object on YouTube.
+ - close_mappings includes schema:MediaObject as the broader media
+ object category.
+ - related_mappings includes prov:Entity for provenance tracking and
+ schema:CreativeWork as videos are creative works.
+ class_uri: schema:VideoObject
+ close_mappings:
+ - schema:MediaObject
+ related_mappings:
+ - prov:Entity
+ - schema:CreativeWork
attributes:
video_id:
range: string