Schema enhancements (443 files): - Add class_uri with proper ontology references (schema:, prov:, skos:, rico:) - Add close_mappings, related_mappings per Rule 50 convention - Replace stub hc: slot_uri with standard predicates (dcterms:identifier, skos:prefLabel) - Improve descriptions with ontology mapping rationale - Add prefixes blocks to all schema modules Entity Resolution improvements: - Add entity_resolution module with email semantics parsing - Enhance build_entity_resolution.py with email-based matching signals - Extend Entity Review API with filtering by signal types and count - Add candidates caching and indexing for performance - Add ReviewLoginPage component New rules and documentation: - Add Rule 51: No Hallucinated Ontology References - Add .opencode/rules/no-hallucinated-ontology-references.md - Add .opencode/rules/slot-ontology-mapping-reference.md - Add adms.ttl and dqv.ttl ontology files Frontend ontology support: - Add RiC-O_1-1.rdf and schemaorg.owl to public/ontology
61 lines
2 KiB
YAML
61 lines
2 KiB
YAML
# RelatedYoutubeVideo - Related YouTube video about the institution from external...
|
|
# Extracted from custodian_source.yaml per Rule 38 (modular schema files)
|
|
# Extraction date: 2026-01-08
|
|
|
|
id: https://nde.nl/ontology/hc/classes/RelatedYoutubeVideo
|
|
name: RelatedYoutubeVideo
|
|
title: RelatedYoutubeVideo
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
prov: http://www.w3.org/ns/prov#
|
|
xsd: http://www.w3.org/2001/XMLSchema#
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
|
|
default_range: string
|
|
|
|
classes:
|
|
RelatedYoutubeVideo:
|
|
description: >-
|
|
A YouTube video related to a heritage institution, published by an
|
|
external channel. Captures video metadata including ID, URL, title,
|
|
channel name, and the type of relationship (news coverage, documentary,
|
|
interview, etc.).
|
|
|
|
Ontology mapping rationale:
|
|
- class_uri is schema:VideoObject because this represents video content
|
|
with standard video properties (URL, title, publisher/channel)
|
|
- close_mappings includes schema:MediaObject as a broader media type
|
|
- related_mappings includes schema:CreativeWork for the creative content
|
|
aspect and prov:Entity for provenance tracking
|
|
class_uri: schema:VideoObject
|
|
close_mappings:
|
|
- schema:MediaObject
|
|
related_mappings:
|
|
- schema:CreativeWork
|
|
- prov:Entity
|
|
attributes:
|
|
video_id:
|
|
range: string
|
|
required: true
|
|
description: YouTube video ID
|
|
video_url:
|
|
range: uri
|
|
description: Full YouTube video URL
|
|
title:
|
|
range: string
|
|
description: Video title
|
|
channel_name:
|
|
range: string
|
|
description: Name of the channel that published the video
|
|
relationship_type:
|
|
range: string
|
|
description: Type of relationship (news_coverage, documentary, interview, etc.)
|
|
note:
|
|
range: string
|
|
description: Notes about this related video
|