- Added detailed descriptions for slots: collecting_scope, collection_access, custody_history, education_level, membership_size, and publication_activity to improve clarity and usability. - Removed the publication_date slot due to migration to a new structure. - Updated slot fixes with migration notes and adjustments for various slots, ensuring alignment with new ontology standards. - Introduced new classes for DigitalPlatformV2, including DigitalPlatformV2DataQualityNotes, DigitalPlatformV2DataSource, DigitalPlatformV2KeyContact, DigitalPlatformV2OrganizationProfile, DigitalPlatformV2OrganizationStatus, DigitalPlatformV2PrimaryPlatform, DigitalPlatformV2Provenance, DigitalPlatformV2ServiceDetails, and DigitalPlatformV2TransformationMetadata, each with comprehensive attributes and descriptions. - Added classes for EnrichmentProvenance and EnrichmentProvenanceEntry to track provenance for enrichment sources, including detailed attributes for verification and source tracking. - Created LogoClaim, LogoEnrichment, and LogoEnrichmentSummary classes to manage logo and favicon data extracted from web scraping, with attributes for claims and summary statistics. - Archived the publication_date slot to maintain historical records.
52 lines
1.8 KiB
YAML
52 lines
1.8 KiB
YAML
# EnrichmentProvenanceEntry - Single enrichment provenance entry with hash and verification
|
|
# Created for CustodianSourceFile validation compatibility
|
|
# Creation date: 2026-01-18
|
|
|
|
id: https://nde.nl/ontology/hc/classes/EnrichmentProvenanceEntry
|
|
name: EnrichmentProvenanceEntry
|
|
title: EnrichmentProvenanceEntry
|
|
|
|
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:
|
|
EnrichmentProvenanceEntry:
|
|
description: >-
|
|
A single enrichment provenance entry containing content hash for
|
|
integrity verification, verification timestamp, and derivation source.
|
|
Implements W3C PROV-O and W3C SRI (Subresource Integrity) patterns.
|
|
|
|
Ontology mapping rationale:
|
|
- class_uri is prov:Entity because this represents an entity with
|
|
provenance metadata (derivation, generation time)
|
|
- close_mappings includes prov:Derivation as this tracks where
|
|
the enrichment was derived from
|
|
class_uri: prov:Entity
|
|
close_mappings:
|
|
- prov:Derivation
|
|
related_mappings:
|
|
- prov:Activity
|
|
attributes:
|
|
content_hash:
|
|
range: string
|
|
description: >-
|
|
SHA-256 content hash for integrity verification following W3C SRI
|
|
(Subresource Integrity) format (e.g., sha256-C6WLNCLHslf75jqQ...)
|
|
verified_at:
|
|
range: datetime
|
|
description: When this enrichment was last verified
|
|
wasDerivedFrom:
|
|
range: uri
|
|
slot_uri: prov:wasDerivedFrom
|
|
description: Source URI from which the enrichment was derived
|
|
wasGeneratedBy:
|
|
range: string
|
|
description: Activity or process that generated this enrichment
|