Schema Migration Fixes: - Fix YAML import indentation in ~650 slot files (linkml:types and enum imports) - Rename slot reference: has_or_had_holds_record_set_type → hold_or_held_record_set_type (70+ archive class files, main schema, manifest.json) - Fix ProvenanceBlock.yaml: remove invalid any_of range, use string with multivalued - Fix has_or_had_provenance.yaml: remove nested template_specificity from annotations Validation Status: - 0 errors (was multiple import/reference errors) - 30 warnings (missing descriptions on inline slots, intentional SCREAMING_CASE names) Files changed: ~3,850 (slots, classes, main schema, manifest)
71 lines
2.2 KiB
YAML
71 lines
2.2 KiB
YAML
# asserts_or_asserted - Links provenance to a hypothesis or assertion
|
|
# Created per slot_fixes.yaml migration for: type_hypothesis
|
|
# Creation date: 2026-01-14
|
|
|
|
id: https://nde.nl/ontology/hc/slot/asserts_or_asserted
|
|
name: asserts_or_asserted_slot
|
|
title: Asserts Or Asserted Slot
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
prov: http://www.w3.org/ns/prov#
|
|
schema: http://schema.org/
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
- ../classes/Hypothesis
|
|
default_prefix: hc
|
|
|
|
slots:
|
|
asserts_or_asserted:
|
|
description: >-
|
|
Links a provenance record to a hypothesis or assertion that it supports.
|
|
|
|
**TEMPORAL SEMANTICS** (RiC-O style):
|
|
The "asserts_or_asserted" naming indicates that assertions can change:
|
|
- New evidence may modify or invalidate hypotheses
|
|
- Historical assertions preserved for audit trail
|
|
- Confidence levels may be updated over time
|
|
|
|
**USAGE**:
|
|
Used within a Provenance class to link the provenance activity
|
|
to a specific Hypothesis about uncertain data.
|
|
|
|
**EXAMPLE**:
|
|
A provenance record from web scraping asserts a hypothesis about
|
|
institution type based on evidence found on the website.
|
|
|
|
range: Hypothesis
|
|
slot_uri: prov:generated
|
|
inlined: true
|
|
|
|
exact_mappings:
|
|
- prov:generated
|
|
|
|
close_mappings:
|
|
- schema:mainEntity
|
|
|
|
annotations:
|
|
custodian_types: '["U"]'
|
|
custodian_types_rationale: >-
|
|
Assertions/hypotheses primarily relevant for Unknown type institutions.
|
|
custodian_types_primary: "U"
|
|
specificity_score: 0.8
|
|
specificity_rationale: >-
|
|
High specificity - only relevant for hypothesis tracking.
|
|
|
|
examples:
|
|
- value: |
|
|
asserts_or_asserted:
|
|
asserted_value: "MUSEUM"
|
|
confidence_level: "medium"
|
|
supporting_evidence:
|
|
- "Website mentions 'permanent collection'"
|
|
description: Provenance asserting a museum type hypothesis.
|
|
|
|
comments:
|
|
- Created from slot_fixes.yaml migration (2026-01-14)
|
|
- Replaces direct type_hypothesis slot usage
|
|
- Links Provenance class to Hypothesis class
|