- Migrated catering_type to CateringType with subclasses for better classification. - Updated certainty_level to has_or_had_level for improved metadata consistency. - Addressed cessation_observed_in by confirming existing temporal data structure. - Created NetAsset class and updated financial statements for richer financial modeling. - Completed migrations for default_access_policy, default_audio_language, and default_language to structured classes. - Migrated default_position to structured Alignment class for better representation. - Updated defined_by_standard to broaden range for identifier standards. - Migrated definition to structured Resolution class for video resolution modeling. - Completed migrations for degree_name, deliverable, and departement_code to structured classes. - Migrated deployment_date to structured DeploymentEvent with temporal extent. - Migrated derived_from_entity and derived_from_observation to new reference structures. - Completed description and description_text migrations to enhance content modeling. - Migrated detection_count, detection_level, and detection_threshold to structured slots with classes. - Migrated device-related slots to structured classes for better identification and classification. - Added new slots and classes for historic building and web address modeling.
82 lines
2.7 KiB
YAML
82 lines
2.7 KiB
YAML
# EntityReconstruction class
|
|
# Represents a reconstructed formal entity derived from observations
|
|
#
|
|
# Generation date: 2026-01-25
|
|
# Rule compliance: 0 (LinkML single source of truth), 53 (migration from derived_from_entity)
|
|
|
|
id: https://nde.nl/ontology/hc/class/EntityReconstruction
|
|
name: entity_reconstruction_class
|
|
title: EntityReconstruction Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
prov: http://www.w3.org/ns/prov#
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/specificity_annotation
|
|
- ../slots/has_or_had_score
|
|
- ./SpecificityAnnotation
|
|
- ./TemplateSpecificityScore
|
|
- ./TemplateSpecificityType
|
|
- ./TemplateSpecificityTypes
|
|
|
|
classes:
|
|
EntityReconstruction:
|
|
class_uri: prov:Entity
|
|
description: |
|
|
Abstract base class for reconstructed formal entities derived from observations.
|
|
|
|
**Purpose**:
|
|
EntityReconstruction represents the result of analyzing multiple observations
|
|
to reconstruct a formal entity (legal status, name, place).
|
|
|
|
**Relationship to Observations**:
|
|
```
|
|
CustodianObservation[]
|
|
│
|
|
└── refers_or_referred_to → EntityReconstruction
|
|
│
|
|
└── (subtypes: CustodianLegalStatus,
|
|
CustodianName,
|
|
CustodianPlace)
|
|
```
|
|
|
|
**PROV-O Semantics**:
|
|
- `prov:Entity`: Base class for things with provenance
|
|
- Links TO observations via inverse (has_derived_observation)
|
|
- Links FROM observations via refers_or_referred_to
|
|
|
|
**Subtypes**:
|
|
- CustodianLegalStatus - Reconstructed legal entity
|
|
- CustodianName - Reconstructed emic/etic name
|
|
- CustodianPlace - Reconstructed place designation
|
|
|
|
exact_mappings:
|
|
- prov:Entity
|
|
|
|
close_mappings:
|
|
- crm:E73_Information_Object
|
|
|
|
abstract: true
|
|
|
|
slots:
|
|
- specificity_annotation
|
|
- has_or_had_score
|
|
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Abstract base class for all reconstructed entities.
|
|
custodian_types_primary: null
|
|
specificity_score: 0.5
|
|
specificity_rationale: Mid-level abstraction for entity reconstruction pattern.
|
|
|
|
comments:
|
|
- "MIGRATED: supports derived_from_entity → refers_or_referred_to (Rule 53)"
|
|
- "Abstract base for reconstructed formal entities"
|
|
- "PROV-O Entity for provenance tracking"
|
|
- "Subtypes: CustodianLegalStatus, CustodianName, CustodianPlace"
|