All checks were successful
Deploy Frontend / build-and-deploy (push) Successful in 2m4s
Session 2026-01-19: Completed remaining migrations per Rules 53/56/60. Major migrations: 1. claim_type → has_or_had_type + ClaimType/ClaimTypes (60+ concrete types in 11 categories) 2. circumstances_of_death → is_deceased + DeceasedStatus + CauseOfDeath 3. claims_count → has_or_had_quantity + Quantity (with based_on_claim for provenance) 4. classification_status → has_or_had_type + ClassificationStatusType Created files: - ClaimType.yaml, ClaimTypes.yaml (abstract base + 60+ concrete subclasses) - DeceasedStatus.yaml, CauseOfDeath.yaml, CauseOfDeathTypeEnum.yaml - ClassificationStatus.yaml, ClassificationStatusType.yaml, ClassificationStatusTypes.yaml - CITESAppendix.yaml, City.yaml, CertaintyLevel.yaml - is_deceased.yaml, is_or_was_caused_by.yaml, based_on_claim.yaml Archived slots: - claim_type, circumstances_of_death, claims_count, classification_status Added Rule 60 to AGENTS.md: No Migration Deferral - agents MUST execute all migrations. All 527 slot_fixes.yaml entries now complete (100%).
130 lines
4.9 KiB
YAML
130 lines
4.9 KiB
YAML
id: https://nde.nl/ontology/hc/class/ClassificationStatus
|
|
name: ClassificationStatus
|
|
title: Classification Status Class
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
prov: http://www.w3.org/ns/prov#
|
|
schema: http://schema.org/
|
|
skos: http://www.w3.org/2004/02/skos/core#
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_or_had_type
|
|
- ../slots/has_or_had_description
|
|
- ../slots/temporal_extent
|
|
- ./ClassificationStatusType
|
|
- ./ClassificationStatusTypes
|
|
- ./TimeSpan
|
|
default_prefix: hc
|
|
classes:
|
|
ClassificationStatus:
|
|
class_uri: prov:Activity
|
|
description: >-
|
|
Structured status of a custodian type classification attempt.
|
|
|
|
Describes why classification is unspecified, including:
|
|
- The type of classification issue (indeterminate, ambiguous, etc.)
|
|
- Description of the specific situation
|
|
- Temporal context of when status was assessed
|
|
|
|
**CLASSIFICATION STATUS TYPES**:
|
|
|
|
| Type | Description |
|
|
|------|-------------|
|
|
| IndeterminateStatus | Cannot determine from available evidence |
|
|
| AmbiguousStatus | Conflicting evidence about institutional function |
|
|
| TransitionalStatus | Institution changing type, outcome unclear |
|
|
| NovelStatus | Doesn't fit existing taxonomy categories |
|
|
| UnderReviewStatus | Classification being researched |
|
|
| PendingVerificationStatus | Type suspected but needs confirmation |
|
|
|
|
**EXAMPLE**:
|
|
|
|
```yaml
|
|
ClassificationStatus:
|
|
has_or_had_type:
|
|
type: AmbiguousStatus
|
|
has_or_had_label: "Ambiguous"
|
|
has_or_had_description: "Sources conflict: museum (website) vs archive (ISIL registry)"
|
|
temporal_extent:
|
|
begin_of_the_begin: "2026-01-19T00:00:00Z"
|
|
```
|
|
|
|
**MIGRATION NOTE (2026-01-19)**:
|
|
Created per slot_fixes.yaml revision for classification_status migration.
|
|
Replaces simple string with structured class.
|
|
exact_mappings:
|
|
- prov:Activity
|
|
close_mappings:
|
|
- schema:StatusEnumeration
|
|
slots:
|
|
- has_or_had_type
|
|
- has_or_had_description
|
|
- temporal_extent
|
|
slot_usage:
|
|
has_or_had_type:
|
|
range: ClassificationStatusType
|
|
required: true
|
|
inlined: true
|
|
description: >-
|
|
The type of classification status.
|
|
One of: IndeterminateStatus, AmbiguousStatus, TransitionalStatus,
|
|
NovelStatus, UnderReviewStatus, PendingVerificationStatus.
|
|
examples:
|
|
- value:
|
|
type: IndeterminateStatus
|
|
has_or_had_label: "Indeterminate"
|
|
description: Cannot determine from available evidence
|
|
- value:
|
|
type: AmbiguousStatus
|
|
has_or_had_label: "Ambiguous"
|
|
description: Conflicting evidence about function
|
|
has_or_had_description:
|
|
range: string
|
|
required: true
|
|
description: >-
|
|
Human-readable description of the classification status.
|
|
Explains the specific reason for the status.
|
|
examples:
|
|
- value: "Type indeterminate - insufficient evidence"
|
|
description: Defunct organization, minimal records
|
|
- value: "Sources conflict: museum (website) vs archive (ISIL registry)"
|
|
description: Ambiguous status with conflicting sources
|
|
temporal_extent:
|
|
range: TimeSpan
|
|
required: false
|
|
inlined: true
|
|
description: >-
|
|
When this classification status was assessed.
|
|
annotations:
|
|
custodian_types: '["U"]'
|
|
custodian_types_rationale: >-
|
|
Classification status applies to Unspecified (U) custodian type.
|
|
custodian_types_primary: "U"
|
|
specificity_score: 0.85
|
|
specificity_rationale: >-
|
|
Highly specific - only applies to unclassified heritage custodians.
|
|
examples:
|
|
- value: |
|
|
ClassificationStatus:
|
|
has_or_had_type:
|
|
type: IndeterminateStatus
|
|
has_or_had_label: "Indeterminate"
|
|
has_or_had_description: "Type indeterminate - insufficient evidence. Defunct organization, minimal records."
|
|
description: Indeterminate status for defunct organization
|
|
- value: |
|
|
ClassificationStatus:
|
|
has_or_had_type:
|
|
type: AmbiguousStatus
|
|
has_or_had_label: "Ambiguous"
|
|
has_or_had_description: "Sources conflict: museum (website) vs archive (ISIL registry)"
|
|
temporal_extent:
|
|
begin_of_the_begin: "2026-01-19T00:00:00Z"
|
|
description: Ambiguous status with temporal context
|
|
- value: |
|
|
ClassificationStatus:
|
|
has_or_had_type:
|
|
type: TransitionalStatus
|
|
has_or_had_label: "Transitional"
|
|
has_or_had_description: "Merger in progress between museum and archive, final type TBD"
|
|
description: Transitional status during organizational change
|