Add archived slots for audience size, audience type, and capacity metrics
- Created new YAML files for audience size and audience type slots, defining their properties and annotations. - Added archived capacity slots including cubic meters, linear meters, item count, and descriptions, with appropriate URIs and ranges. - Introduced a template specificity slot for context-aware RAG filtering. - Consolidated capacity-related slots into a unified structure, including has_or_had_capacity, capacity_type, and capacity_value, with detailed descriptions and examples.
This commit is contained in:
parent
1b829fbe82
commit
4319f38c05
774 changed files with 18894 additions and 10530 deletions
144
.opencode/rules/feedback-vs-revision-distinction.md
Normal file
144
.opencode/rules/feedback-vs-revision-distinction.md
Normal file
|
|
@ -0,0 +1,144 @@
|
|||
# Rule 58: Feedback vs Revision Distinction in slot_fixes.yaml
|
||||
|
||||
## Summary
|
||||
|
||||
The `feedback` and `revision` fields in `slot_fixes.yaml` serve distinct purposes and MUST NOT be conflated or renamed.
|
||||
|
||||
## Field Definitions
|
||||
|
||||
### `revision` Field
|
||||
- **Purpose**: Defines WHAT the migration target is
|
||||
- **Content**: List of slots and classes to create
|
||||
- **Authority**: IMMUTABLE (per Rule 57)
|
||||
- **Format**: Structured YAML list with `label`, `type`, optional `link_branch`
|
||||
|
||||
### `feedback` Field
|
||||
- **Purpose**: Contains user instructions on HOW the revision needs to be applied or corrected
|
||||
- **Content**: Can be string or structured format
|
||||
- **Authority**: User directives that override previous `notes`
|
||||
- **Action Required**: Agent must interpret and act upon feedback
|
||||
|
||||
## Feedback Formats
|
||||
|
||||
### Format 1: Structured (with `done` field)
|
||||
```yaml
|
||||
feedback:
|
||||
- timestamp: '2026-01-17T00:01:57Z'
|
||||
user: Simon C. Kemper
|
||||
done: false # Becomes true after agent processes
|
||||
comment: |
|
||||
The migration should use X instead of Y.
|
||||
response: "" # Agent fills this after completing
|
||||
```
|
||||
|
||||
### Format 2: String (direct instruction)
|
||||
```yaml
|
||||
feedback: I reject this! type_id should be migrated to has_or_had_identifier + Identifier
|
||||
```
|
||||
|
||||
Or:
|
||||
```yaml
|
||||
feedback: I altered the revision based on this feedback. Conduct this new migration accordingly.
|
||||
```
|
||||
|
||||
## Interpretation Rules
|
||||
|
||||
| Feedback Contains | Meaning | Action Required |
|
||||
|-------------------|---------|-----------------|
|
||||
| "I reject this" | Previous `notes` were WRONG | Follow `revision` field instead |
|
||||
| "I altered the revision" | User updated `revision` | Execute migration per NEW revision |
|
||||
| "Conduct the migration" | Migration not yet done | Execute migration now |
|
||||
| "Please conduct accordingly" | Migration pending | Execute migration now |
|
||||
| "ADDRESSED" or `done: true` | Already processed | No action needed |
|
||||
|
||||
## Decision Tree
|
||||
|
||||
```
|
||||
Is feedback field present?
|
||||
├─ NO → Check `processed.status`
|
||||
│ ├─ true → Migration complete
|
||||
│ └─ false → Execute revision
|
||||
│
|
||||
└─ YES → What format?
|
||||
├─ Structured with `done: true` → No action needed
|
||||
├─ Structured with `done: false` → Process feedback, then set done: true
|
||||
└─ String format → Parse for keywords:
|
||||
├─ "reject" → Previous notes invalid, follow revision
|
||||
├─ "altered/adjusted revision" → Execute NEW revision
|
||||
├─ "conduct/please" → Migration pending, execute now
|
||||
└─ "ADDRESSED" → Already done, no action
|
||||
```
|
||||
|
||||
## Anti-Patterns
|
||||
|
||||
### WRONG: Renaming feedback to revision
|
||||
```yaml
|
||||
# DO NOT DO THIS
|
||||
# feedback contains instructions, not migration specs
|
||||
revision: # Was: feedback
|
||||
- I reject this! Use has_or_had_identifier
|
||||
```
|
||||
|
||||
### WRONG: Ignoring string feedback
|
||||
```yaml
|
||||
feedback: Please conduct the migration accordingly.
|
||||
notes: "NO MIGRATION NEEDED" # WRONG - feedback overrides notes
|
||||
```
|
||||
|
||||
### WRONG: Treating all feedback as completed
|
||||
```yaml
|
||||
feedback: I altered the revision. Conduct this new migration.
|
||||
processed:
|
||||
status: true # WRONG if migration not actually done
|
||||
```
|
||||
|
||||
## Correct Workflow
|
||||
|
||||
1. **Read feedback** - Understand user instruction
|
||||
2. **Check revision** - This defines the target migration
|
||||
3. **Execute migration** - Create/update slots and classes per revision
|
||||
4. **Update processed.status** - Set to `true`
|
||||
5. **Add response** - Document what was done
|
||||
- For structured feedback: Set `done: true` and fill `response`
|
||||
- For string feedback: Add new structured feedback entry confirming completion
|
||||
|
||||
## Example: Processing String Feedback
|
||||
|
||||
Before:
|
||||
```yaml
|
||||
- original_slot_id: https://nde.nl/ontology/hc/slot/type_id
|
||||
feedback: I reject this! type_id should be migrated to has_or_had_identifier + Identifier
|
||||
revision:
|
||||
- label: has_or_had_identifier
|
||||
type: slot
|
||||
- label: Identifier
|
||||
type: class
|
||||
processed:
|
||||
status: false
|
||||
notes: "Previously marked as no migration needed"
|
||||
```
|
||||
|
||||
After processing:
|
||||
```yaml
|
||||
- original_slot_id: https://nde.nl/ontology/hc/slot/type_id
|
||||
feedback:
|
||||
- timestamp: '2026-01-17T12:00:00Z'
|
||||
user: System
|
||||
done: true
|
||||
comment: "Original string feedback: I reject this! type_id should be migrated to has_or_had_identifier + Identifier"
|
||||
response: "Migration completed. type_id.yaml archived, consuming classes updated to use has_or_had_identifier slot with Identifier range."
|
||||
revision:
|
||||
- label: has_or_had_identifier
|
||||
type: slot
|
||||
- label: Identifier
|
||||
type: class
|
||||
processed:
|
||||
status: true
|
||||
notes: "Migration completed per user feedback rejecting previous notes."
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- **Rule 53**: Full Slot Migration - slot_fixes.yaml is AUTHORITATIVE
|
||||
- **Rule 57**: slot_fixes.yaml Revision Key is IMMUTABLE
|
||||
- **Rule 39**: Slot Naming Convention (RiC-O Style)
|
||||
55
AGENTS.md
55
AGENTS.md
|
|
@ -1888,6 +1888,61 @@ The `revision` section in each slot_fixes.yaml entry was **manually curated** ba
|
|||
|
||||
---
|
||||
|
||||
### Rule 58: Feedback vs Revision Distinction in slot_fixes.yaml
|
||||
|
||||
🚨 **CRITICAL**: The `feedback` and `revision` fields in `slot_fixes.yaml` serve distinct purposes and MUST NOT be conflated or renamed.
|
||||
|
||||
**Field Definitions**:
|
||||
|
||||
| Field | Purpose | Authority |
|
||||
|-------|---------|-----------|
|
||||
| `revision` | Defines WHAT the migration target is (slots/classes to create) | IMMUTABLE (Rule 57) |
|
||||
| `feedback` | Contains user instructions on HOW the revision should be applied | User directives that override previous `notes` |
|
||||
|
||||
**Feedback Formats**:
|
||||
|
||||
1. **Structured** (with `done` field):
|
||||
```yaml
|
||||
feedback:
|
||||
- timestamp: '2026-01-17T00:01:57Z'
|
||||
user: Simon C. Kemper
|
||||
done: false # Becomes true after agent processes
|
||||
comment: |
|
||||
The migration should use X instead of Y.
|
||||
```
|
||||
|
||||
2. **String** (direct instruction):
|
||||
```yaml
|
||||
feedback: I reject this! type_id should be migrated to has_or_had_identifier + Identifier
|
||||
```
|
||||
|
||||
**Interpretation Rules**:
|
||||
|
||||
| Feedback Contains | Meaning | Action Required |
|
||||
|-------------------|---------|-----------------|
|
||||
| "I reject this" | Previous `notes` were WRONG | Follow `revision` field instead |
|
||||
| "I altered the revision" | User updated `revision` | Execute migration per NEW revision |
|
||||
| "Conduct the migration" | Migration not yet done | Execute migration now |
|
||||
| "Please conduct accordingly" | Migration pending | Execute migration now |
|
||||
| "ADDRESSED" or `done: true` | Already processed | No action needed |
|
||||
|
||||
**Decision Tree**:
|
||||
```
|
||||
Is feedback field present?
|
||||
├─ NO → Check processed.status, execute revision if false
|
||||
└─ YES → Parse format:
|
||||
├─ Structured with done: true → No action needed
|
||||
├─ Structured with done: false → Process, then set done: true
|
||||
└─ String format → Parse for keywords:
|
||||
├─ "reject" → Follow revision, ignore previous notes
|
||||
├─ "altered/adjusted" → Execute NEW revision
|
||||
└─ "conduct/please" → Migration pending, execute now
|
||||
```
|
||||
|
||||
**See**: `.opencode/rules/feedback-vs-revision-distinction.md` for complete documentation
|
||||
|
||||
---
|
||||
|
||||
## Appendix: Full Rule Content (No .opencode Equivalent)
|
||||
|
||||
The following rules have no separate .opencode file and are preserved in full:
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -12,41 +12,41 @@ prefixes:
|
|||
bf: http://id.loc.gov/ontologies/bibframe/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./AcademicArchiveRecordSetType
|
||||
- ./AcademicArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./AcademicArchiveRecordSetType
|
||||
- ./AcademicArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
UniversityAdministrativeFonds:
|
||||
is_a: AcademicArchiveRecordSetType
|
||||
|
|
@ -97,6 +97,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -165,6 +171,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -240,6 +253,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:LibraryType"]'
|
||||
|
|
@ -312,6 +331,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:LibraryType", "hc:MuseumType"]'
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ imports:
|
|||
- ../slots/has_or_had_access_level
|
||||
# RESTORED 2026-01-15: requires_appointment has correct semantics (schema:reservationRequired)
|
||||
# The is_or_was_required slot was incorrectly using schema:isRequired which is for form field validation
|
||||
# KEPT for backward compatibility - simple boolean for basic use cases
|
||||
- ../slots/requires_appointment
|
||||
- ../slots/condition
|
||||
- ../slots/credentials_required
|
||||
|
|
@ -41,6 +42,11 @@ imports:
|
|||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
# ADDED 2026-01-17: Rich appointment modeling per slot_fixes.yaml revision for appointment_required
|
||||
# These enable structured access conditions with Appointment entities (vs. just boolean)
|
||||
- ../slots/condition_of_access
|
||||
- ../slots/requires_or_required
|
||||
- ./Appointment
|
||||
classes:
|
||||
AccessPolicy:
|
||||
class_uri: premis:RightsStatus
|
||||
|
|
@ -89,8 +95,12 @@ classes:
|
|||
- has_or_had_access_description
|
||||
- has_or_had_access_level
|
||||
# RESTORED 2026-01-15: requires_appointment - correct semantics (schema:reservationRequired)
|
||||
# KEPT for backward compatibility as simple boolean flag
|
||||
- requires_appointment
|
||||
- condition
|
||||
# ADDED 2026-01-17: Rich access condition modeling per slot_fixes.yaml revision
|
||||
- condition_of_access
|
||||
- requires_or_required
|
||||
- contact_email
|
||||
- credentials_required
|
||||
- cultural_protocol_url
|
||||
|
|
@ -244,6 +254,42 @@ classes:
|
|||
begin_of_the_begin: '2024-01-01'
|
||||
end_of_the_end: '2050-12-31'
|
||||
description: Policy valid from 2024 until end of 2050
|
||||
# ADDED 2026-01-17: Rich access condition modeling per slot_fixes.yaml revision
|
||||
condition_of_access:
|
||||
description: |
|
||||
Textual conditions or requirements for access (RiC-O style).
|
||||
Use for human-readable access requirements. For structured appointment
|
||||
data, use requires_or_required with Appointment instances.
|
||||
range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
- value:
|
||||
- "Appointment required 48 hours in advance"
|
||||
- "Valid researcher credentials required"
|
||||
- "Materials must be handled with cotton gloves"
|
||||
description: Multiple access conditions
|
||||
requires_or_required:
|
||||
description: |
|
||||
Links to structured Appointment entities for rich appointment modeling.
|
||||
ADDED 2026-01-17 per slot_fixes.yaml revision for appointment_required.
|
||||
|
||||
Use this for detailed appointment requirements (lead time, booking method,
|
||||
contact info). For simple boolean, use requires_appointment instead.
|
||||
range: Appointment
|
||||
multivalued: true
|
||||
inlined: true
|
||||
examples:
|
||||
- value:
|
||||
- appointment_id: "hc:appointment/special-collections-48h"
|
||||
has_or_had_label: "Special Collections Appointment"
|
||||
has_or_had_description: "Book at least 48 hours in advance for manuscript access"
|
||||
lead_time_hours: 48
|
||||
booking_method:
|
||||
- email
|
||||
- online_form
|
||||
booking_contact: "bijzondere.collecties@archive.nl"
|
||||
appointment_required: true
|
||||
description: Structured appointment requirement with rich metadata
|
||||
comments:
|
||||
- AccessPolicy defines access conditions for Collection instances
|
||||
- Used by Collection.access_policy_ref to link policies to holdings
|
||||
|
|
@ -292,3 +338,33 @@ classes:
|
|||
credentials_required: PROFESSIONAL
|
||||
contact_email: preservation@archive.org
|
||||
description: Dark archive / DIM access policy
|
||||
# ADDED 2026-01-17: Example with rich appointment modeling
|
||||
- value:
|
||||
policy_id: https://nde.nl/ontology/hc/access-policy/special-collections-rich
|
||||
policy_name: Special Collections - Rich Appointment Policy
|
||||
access_level: RESEARCHERS_ONLY
|
||||
access_description: Academic researchers with institutional affiliation
|
||||
condition_of_access:
|
||||
- "Valid institutional ID required"
|
||||
- "Letter of introduction from supervisor"
|
||||
- "Maximum 5 items per visit"
|
||||
requires_or_required:
|
||||
- appointment_id: "hc:appointment/special-collections-booking"
|
||||
has_or_had_label: "Special Collections Appointment"
|
||||
has_or_had_description: |
|
||||
Appointments for manuscript and rare book collections must be made
|
||||
at least 48 hours in advance. Please specify which materials you
|
||||
wish to consult.
|
||||
lead_time_hours: 48
|
||||
booking_method:
|
||||
- email
|
||||
- online_form
|
||||
booking_contact: "bijzondere.collecties@archive.nl"
|
||||
confirmation_required: true
|
||||
cancellation_notice_hours: 24
|
||||
appointment_required: true
|
||||
registration_required: true
|
||||
credentials_required: INSTITUTIONAL
|
||||
fee_required: false
|
||||
contact_email: special.collections@archive.nl
|
||||
description: Rich appointment modeling with structured Appointment entity
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ prefixes:
|
|||
prov: http://www.w3.org/ns/prov#
|
||||
schema: http://schema.org/
|
||||
aat: http://vocab.getty.edu/aat/
|
||||
wd: http://www.wikidata.org/entity/
|
||||
|
||||
default_prefix: hc
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/address_formatted
|
||||
- ../slots/address_type
|
||||
# REMOVED: ../slots/address_type - migrated to has_or_had_type (2026-01-17, Rule 53/56)
|
||||
# Address component slots
|
||||
- ../slots/house_number
|
||||
# REMOVED: ../slots/street_name - migrated to has_or_had_label + Label (2026-01-17, Rule 53/56)
|
||||
|
|
@ -229,42 +229,19 @@ classes:
|
|||
examples:
|
||||
- value: "Museumstraat 1, 1071 XX Amsterdam, Netherlands"
|
||||
description: Complete formatted address
|
||||
has_or_had_label:
|
||||
range: Label
|
||||
required: false
|
||||
multivalued: true
|
||||
inlined: true
|
||||
description: |
|
||||
Labeled representations of address components or the full formatted address.
|
||||
MIGRATED from address_formatted and street_name (2026-01-17).
|
||||
|
||||
Use Label class with language tagging to support:
|
||||
- Full formatted address strings
|
||||
- Street/thoroughfare names (migrated from street_name slot per Rule 53/56)
|
||||
- Other labeled address components requiring language tagging
|
||||
|
||||
For street names, use Label with appropriate type annotation.
|
||||
examples:
|
||||
- value: |
|
||||
has_or_had_label: "Museumstraat 1, 1071 XX Amsterdam, Netherlands"
|
||||
language: "nl"
|
||||
description: Complete formatted address
|
||||
- value: |
|
||||
has_or_had_label: "Museumstraat"
|
||||
language: "nl"
|
||||
description: Street name as Label (migrated from street_name)
|
||||
address_type:
|
||||
range: string
|
||||
required: false
|
||||
description: |
|
||||
Classification of address purpose.
|
||||
DEPRECATED: Use has_or_had_type with AddressType class instead.
|
||||
MIGRATION: 2026-01-13 - Replaced by has_or_had_type slot.
|
||||
deprecated: "Use has_or_had_type with AddressType class instead"
|
||||
examples:
|
||||
- value: "HEADQUARTERS"
|
||||
description: Main organizational address
|
||||
has_or_had_type:
|
||||
# REMOVED: address_type slot_usage - migrated to has_or_had_type (2026-01-17, Rule 53/56)
|
||||
# address_type:
|
||||
# range: string
|
||||
# required: false
|
||||
# description: |
|
||||
# Classification of address purpose.
|
||||
# DEPRECATED: Use has_or_had_type with AddressType class instead.
|
||||
# MIGRATION: 2026-01-13 - Replaced by has_or_had_type slot.
|
||||
# deprecated: "Use has_or_had_type with AddressType class instead"
|
||||
# examples:
|
||||
# - value: "HEADQUARTERS"
|
||||
# description: Main organizational address
|
||||
has_or_had_type: # was: address_type - migrated per Rule 53/56 (2026-01-17)
|
||||
range: AddressType
|
||||
required: false
|
||||
multivalued: false
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./AdvertisingRadioArchiveRecordSetType
|
||||
- ./AdvertisingRadioArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./AdvertisingRadioArchiveRecordSetType
|
||||
- ./AdvertisingRadioArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
RadioAdvertisementCollection:
|
||||
is_a: AdvertisingRadioArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./AnimalSoundArchiveRecordSetType
|
||||
- ./AnimalSoundArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./AnimalSoundArchiveRecordSetType
|
||||
- ./AnimalSoundArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
BioacousticRecordingCollection:
|
||||
is_a: AnimalSoundArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -0,0 +1,151 @@
|
|||
# Appointment - Models appointment/reservation requirements as entities
|
||||
# Created 2026-01-17 per slot_fixes.yaml revision for appointment_required
|
||||
id: https://nde.nl/ontology/hc/class/Appointment
|
||||
name: appointment_class
|
||||
title: Appointment Class
|
||||
version: 1.0.0
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
schema: http://schema.org/
|
||||
rico: https://www.ica.org/standards/RiC/ontology#
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/temporal_extent
|
||||
- ./TimeSpan
|
||||
default_prefix: hc
|
||||
|
||||
classes:
|
||||
Appointment:
|
||||
class_uri: schema:Reservation
|
||||
description: |
|
||||
Models an appointment or reservation requirement as a structured entity.
|
||||
|
||||
**PURPOSE**:
|
||||
Heritage institutions often require appointments for:
|
||||
- Special collections access
|
||||
- Reading room reservations
|
||||
- Guided tours of sensitive materials
|
||||
- Conservation viewing requests
|
||||
|
||||
By modeling appointments as entities (not just boolean flags), we can capture:
|
||||
- Lead time requirements (24h, 48h, 1 week in advance)
|
||||
- Booking methods (email, phone, online form)
|
||||
- Confirmation requirements
|
||||
- Cancellation policies
|
||||
- Temporal validity (when appointments are required)
|
||||
|
||||
**ONTOLOGY ALIGNMENT**:
|
||||
- schema:Reservation - "A reservation for an event, service, or product"
|
||||
- rico:conditionsOfAccess - Links to RiC-O access condition patterns
|
||||
|
||||
**REPLACES**:
|
||||
- appointment_required (boolean) - Now modeled as structured entity
|
||||
- requires_appointment (boolean) - Preserved for backward compatibility
|
||||
exact_mappings:
|
||||
- schema:Reservation
|
||||
close_mappings:
|
||||
- rico:Rule
|
||||
slots:
|
||||
- has_or_had_label
|
||||
- has_or_had_description
|
||||
- temporal_extent
|
||||
attributes:
|
||||
appointment_id:
|
||||
description: Unique identifier for this appointment requirement type
|
||||
range: uriorcurie
|
||||
identifier: true
|
||||
lead_time_hours:
|
||||
description: |
|
||||
Minimum hours in advance that appointment must be booked.
|
||||
E.g., 24 = appointment must be made at least 24 hours before.
|
||||
range: integer
|
||||
minimum_value: 0
|
||||
examples:
|
||||
- value: 24
|
||||
description: 24 hours advance notice
|
||||
- value: 48
|
||||
description: 48 hours advance notice
|
||||
- value: 168
|
||||
description: 1 week (168 hours) advance notice
|
||||
booking_method:
|
||||
description: How appointments can be made
|
||||
range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
- value: email
|
||||
description: Book via email
|
||||
- value: phone
|
||||
description: Book via telephone
|
||||
- value: online_form
|
||||
description: Book via website form
|
||||
- value: in_person
|
||||
description: Book at institution
|
||||
booking_contact:
|
||||
description: Contact information for making appointments
|
||||
range: string
|
||||
examples:
|
||||
- value: "studiezaal@nationaalarchief.nl"
|
||||
- value: "+31 70 331 5400"
|
||||
confirmation_required:
|
||||
description: Whether confirmation of appointment is required before visit
|
||||
range: boolean
|
||||
cancellation_notice_hours:
|
||||
description: Hours in advance cancellation must be made
|
||||
range: integer
|
||||
minimum_value: 0
|
||||
appointment_required:
|
||||
description: |
|
||||
Whether appointment is mandatory (true) or recommended (false).
|
||||
Preserves backward compatibility with boolean appointment_required field.
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
description: Appointment is mandatory
|
||||
- value: false
|
||||
description: Appointment recommended but not required
|
||||
slot_usage:
|
||||
has_or_had_label:
|
||||
description: Human-readable name for this appointment type
|
||||
examples:
|
||||
- value: "Reading Room Appointment"
|
||||
- value: "Special Collections Viewing"
|
||||
- value: "Conservation Lab Access"
|
||||
has_or_had_description:
|
||||
description: Detailed description of appointment requirements
|
||||
examples:
|
||||
- value: |
|
||||
Appointments for the Special Collections reading room must be made
|
||||
at least 48 hours in advance. Please specify which materials you
|
||||
wish to consult. Maximum 5 items per visit.
|
||||
temporal_extent:
|
||||
description: |
|
||||
When this appointment requirement is/was in effect.
|
||||
Enables historical tracking of when appointment policies changed.
|
||||
range: TimeSpan
|
||||
inlined: true
|
||||
examples:
|
||||
- value:
|
||||
appointment_id: "hc:appointment/nationaal-archief-special-collections"
|
||||
has_or_had_label: "Special Collections Appointment"
|
||||
has_or_had_description: "Advance appointment required for manuscript and map collections"
|
||||
lead_time_hours: 48
|
||||
booking_method:
|
||||
- email
|
||||
- online_form
|
||||
booking_contact: "bijzondere.collecties@nationaalarchief.nl"
|
||||
confirmation_required: true
|
||||
appointment_required: true
|
||||
description: Nationaal Archief special collections appointment requirement
|
||||
- value:
|
||||
appointment_id: "hc:appointment/reading-room-recommended"
|
||||
has_or_had_label: "Reading Room Reservation"
|
||||
has_or_had_description: "Reservations recommended but walk-ins accepted based on availability"
|
||||
lead_time_hours: 0
|
||||
booking_method:
|
||||
- online_form
|
||||
- in_person
|
||||
appointment_required: false
|
||||
description: Reading room with recommended but not required reservations
|
||||
|
|
@ -11,23 +11,13 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../metadata
|
||||
- ../slots/approximation_level
|
||||
- ../slots/has_or_had_level # was: approximation_level - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_description
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/approximation_level
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/approximation_level
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
default_prefix: hc
|
||||
classes:
|
||||
ApproximationStatus:
|
||||
|
|
@ -69,7 +59,7 @@ classes:
|
|||
```yaml
|
||||
event_date: "1880"
|
||||
is_or_was_approximate:
|
||||
approximation_level: APPROXIMATE
|
||||
has_or_had_level: APPROXIMATE # was: approximation_level
|
||||
has_or_had_label: "circa 1880"
|
||||
has_or_had_description: "Founding date known only to year from secondary sources"
|
||||
```
|
||||
|
|
@ -80,13 +70,13 @@ classes:
|
|||
related_mappings:
|
||||
- skos:note
|
||||
slots:
|
||||
- approximation_level
|
||||
- has_or_had_level # was: approximation_level - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_label
|
||||
- has_or_had_description
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
slot_usage:
|
||||
approximation_level:
|
||||
has_or_had_level: # was: approximation_level - migrated per Rule 53/56 (2026-01-17)
|
||||
range: ApproximationLevelEnum
|
||||
required: true
|
||||
description: >-
|
||||
|
|
@ -119,21 +109,21 @@ classes:
|
|||
- https://www.cidoc-crm.org/Entity/e52-time-span/version-7.1.3
|
||||
examples:
|
||||
- value:
|
||||
approximation_level: EXACT
|
||||
has_or_had_level: EXACT # was: approximation_level
|
||||
has_or_had_label: "1880-03-15"
|
||||
description: Exact date with full precision
|
||||
- value:
|
||||
approximation_level: APPROXIMATE
|
||||
has_or_had_level: APPROXIMATE # was: approximation_level
|
||||
has_or_had_label: "circa 1880"
|
||||
has_or_had_description: "Founding date known only to year from newspaper accounts"
|
||||
description: Approximate date with explanation
|
||||
- value:
|
||||
approximation_level: ESTIMATED
|
||||
has_or_had_level: ESTIMATED # was: approximation_level
|
||||
has_or_had_label: "estimated 1875-1885"
|
||||
has_or_had_description: "Date range inferred from building construction records"
|
||||
description: Estimated date range
|
||||
- value:
|
||||
approximation_level: UNKNOWN
|
||||
has_or_had_level: UNKNOWN # was: approximation_level
|
||||
has_or_had_label: "date unknown"
|
||||
has_or_had_description: "No founding records survive"
|
||||
description: Unknown date
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ArchitecturalArchiveRecordSetType
|
||||
- ./ArchitecturalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ArchitecturalArchiveRecordSetType
|
||||
- ./ArchitecturalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ArchitecturalDrawingCollection:
|
||||
is_a: ArchitecturalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -15,16 +15,8 @@ imports:
|
|||
- ./WikiDataEntry # for is_or_was_related_to range (2026-01-15)
|
||||
- ./ArchivalLibraryRecordSetType
|
||||
- ../slots/is_branch_of
|
||||
- ../slots/branch_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/is_branch_of
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/branch_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/is_branch_of
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_type # was: branch_type - migrated per Rule 53 (2026-01-17)
|
||||
- ./BranchType # for has_or_had_type range (2026-01-17)
|
||||
classes:
|
||||
ArchivalLibrary:
|
||||
is_a: OrganizationBranch
|
||||
|
|
@ -38,7 +30,7 @@ classes:
|
|||
\ related to archive holdings\n\n**Organizational Context**:\nArchival libraries are typically:\n- Embedded within larger\
|
||||
\ archive organizations (as org:OrganizationalUnit)\n- Supporting the research mission of the parent archive\n- Providing\
|
||||
\ context for archival collections\n- Serving both staff and external researchers\n\n**Branch Relationship**:\n- Use\
|
||||
\ `is_branch_of` to link to the parent Archive custodian\n- Use `branch_type` = BRANCH_LIBRARY for classification\n\n\
|
||||
\ `is_branch_of` to link to the parent Archive custodian\n- Use `has_or_had_type` = BranchLibraryUnit for classification\n\n\
|
||||
**Related Types**:\n- Archive (Q166118) - Parent archive organization\n- SpecialCollection (Q4431094) - Specialized\
|
||||
\ library holdings\n- OrganizationBranch - Parent class for organizational units\n\n**Dual-Class Pattern**:\nThis class\
|
||||
\ represents the BRANCH type (the library unit within an archive).\nFor the collection type, see `ArchivalLibraryRecordSetType`\
|
||||
|
|
@ -47,9 +39,15 @@ classes:
|
|||
\ Labels**:\n- de: Archivbibliothek\n- es: biblioteca de archivo\n- fr: bibliothèque liée à une institution conservant\
|
||||
\ des archives\n"
|
||||
slot_usage:
|
||||
branch_type:
|
||||
equals_string: BRANCH_LIBRARY
|
||||
has_or_had_type:
|
||||
range: BranchType
|
||||
required: true
|
||||
description: |
|
||||
Type of branch. For archival libraries, this should be BranchLibraryUnit.
|
||||
MIGRATED from branch_type (2026-01-17) per Rule 53.
|
||||
examples:
|
||||
- value: BranchLibraryUnit
|
||||
description: Archival library branch type
|
||||
is_branch_of:
|
||||
required: true
|
||||
has_or_had_custodian_type:
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ArchiveOfInternationalOrganizationRecordSetType
|
||||
- ./ArchiveOfInternationalOrganization
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ArchiveOfInternationalOrganizationRecordSetType
|
||||
- ./ArchiveOfInternationalOrganization
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
InternationalOrgFonds:
|
||||
is_a: ArchiveOfInternationalOrganizationRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ArchivesForBuildingRecordsRecordSetType
|
||||
- ./ArchivesForBuildingRecords
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ArchivesForBuildingRecordsRecordSetType
|
||||
- ./ArchivesForBuildingRecords
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
BuildingPermitSeries:
|
||||
is_a: ArchivesForBuildingRecordsRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ArchivesRegionalesRecordSetType
|
||||
- ./ArchivesRegionales
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ArchivesRegionalesRecordSetType
|
||||
- ./ArchivesRegionales
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
RegionalAdministrationFonds:
|
||||
is_a: ArchivesRegionalesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ArtArchiveRecordSetType
|
||||
- ./ArtArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ArtArchiveRecordSetType
|
||||
- ./ArtArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ArtistPapersCollection:
|
||||
is_a: ArtArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -14,26 +14,17 @@ imports:
|
|||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_type # was: asserter_type - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_version # was: asserter_version - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_contact_point # was: asserter_contact - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/asserter_contact
|
||||
- ../slots/asserter_type
|
||||
- ../slots/asserter_version
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/asserter_contact
|
||||
- ../slots/asserter_type
|
||||
- ../slots/asserter_version
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
# REMOVED - migrated to generic slots per Rule 53/56 (2026-01-17)
|
||||
# - ../slots/asserter_contact → has_or_had_contact_point
|
||||
# - ../slots/asserter_type → has_or_had_type
|
||||
# - ../slots/asserter_version → has_or_had_version
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Asserter:
|
||||
|
|
@ -68,11 +59,11 @@ classes:
|
|||
|
||||
```yaml
|
||||
Asserter:
|
||||
asserter_id: https://nde.nl/ontology/hc/asserter/claude-opus-4
|
||||
asserter_name: Claude Opus 4
|
||||
asserter_type: AI_AGENT
|
||||
asserter_description: Anthropic Claude AI model used for assertion generation
|
||||
asserter_version: "claude-opus-4-20250514"
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/asserter/claude-opus-4
|
||||
has_or_had_label: Claude Opus 4
|
||||
has_or_had_type: AI_AGENT
|
||||
has_or_had_description: Anthropic Claude AI model used for assertion generation
|
||||
has_or_had_version: "claude-opus-4-20250514"
|
||||
```
|
||||
exact_mappings:
|
||||
- prov:Agent
|
||||
|
|
@ -86,9 +77,9 @@ classes:
|
|||
- has_or_had_identifier
|
||||
- has_or_had_label
|
||||
- has_or_had_description
|
||||
- asserter_type
|
||||
- asserter_version
|
||||
- asserter_contact
|
||||
- has_or_had_type # was: asserter_type - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_version # was: asserter_version - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_contact_point # was: asserter_contact - migrated per Rule 53/56 (2026-01-17)
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
slot_usage:
|
||||
|
|
@ -123,7 +114,7 @@ classes:
|
|||
examples:
|
||||
- value: Anthropic Claude AI model used for heritage data assertions
|
||||
- value: Senior digital heritage analyst at NDE
|
||||
asserter_type:
|
||||
has_or_had_type: # was: asserter_type - migrated per Rule 53/56 (2026-01-17)
|
||||
range: AsserterTypeEnum
|
||||
required: true
|
||||
description: >-
|
||||
|
|
@ -132,7 +123,7 @@ classes:
|
|||
- value: AI_AGENT
|
||||
- value: HUMAN_ANALYST
|
||||
- value: AUTOMATED_SYSTEM
|
||||
asserter_version:
|
||||
has_or_had_version: # was: asserter_version - migrated per Rule 53/56 (2026-01-17)
|
||||
range: string
|
||||
required: false
|
||||
description: >-
|
||||
|
|
@ -140,7 +131,7 @@ classes:
|
|||
examples:
|
||||
- value: "claude-opus-4-20250514"
|
||||
- value: "1.2.3"
|
||||
asserter_contact:
|
||||
has_or_had_contact_point: # was: asserter_contact - migrated per Rule 53/56 (2026-01-17)
|
||||
range: string
|
||||
required: false
|
||||
description: >-
|
||||
|
|
@ -160,23 +151,23 @@ classes:
|
|||
- value:
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/asserter/claude-opus-4
|
||||
has_or_had_label: Claude Opus 4
|
||||
asserter_type: AI_AGENT
|
||||
has_or_had_type: AI_AGENT # was: asserter_type
|
||||
has_or_had_description: Anthropic Claude AI model used for heritage data assertions
|
||||
asserter_version: "claude-opus-4-20250514"
|
||||
has_or_had_version: "claude-opus-4-20250514" # was: asserter_version
|
||||
description: AI agent asserter
|
||||
- value:
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/asserter/jane-doe-nde
|
||||
has_or_had_label: Dr. Jane Doe
|
||||
asserter_type: HUMAN_ANALYST
|
||||
has_or_had_type: HUMAN_ANALYST # was: asserter_type
|
||||
has_or_had_description: Senior digital heritage analyst at NDE
|
||||
asserter_contact: jane.doe@nde.nl
|
||||
has_or_had_contact_point: jane.doe@nde.nl # was: asserter_contact
|
||||
description: Human analyst asserter
|
||||
- value:
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/asserter/primary-presence-classifier
|
||||
has_or_had_label: primary-presence-classifier
|
||||
asserter_type: AUTOMATED_SYSTEM
|
||||
has_or_had_type: AUTOMATED_SYSTEM # was: asserter_type
|
||||
has_or_had_description: Automated system for classifying primary digital presence
|
||||
asserter_version: "1.0.0"
|
||||
has_or_had_version: "1.0.0" # was: asserter_version
|
||||
description: Automated system asserter
|
||||
|
||||
# REMOVED inline slots 2026-01-16 - Rule 48 violation
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./AudiovisualArchiveRecordSetType
|
||||
- ./AudiovisualArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./AudiovisualArchiveRecordSetType
|
||||
- ./AudiovisualArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
AudiovisualRecordingCollection:
|
||||
is_a: AudiovisualArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./BankArchiveRecordSetType
|
||||
- ./BankArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./BankArchiveRecordSetType
|
||||
- ./BankArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
BankingRecordsFonds:
|
||||
is_a: BankArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -0,0 +1,120 @@
|
|||
# BioCustodianSubtype - Abstract base class for biological custodian subtype taxonomy
|
||||
# Following Type/Types naming convention (Rule 0b)
|
||||
#
|
||||
# This class defines the type taxonomy for biological/zoological custodian subtypes.
|
||||
# Concrete subclasses are defined in BioCustodianSubtypes.yaml
|
||||
#
|
||||
# Created: 2026-01-17 (Rule 53/56 migration for bio_custodian_subtype)
|
||||
# Revision: Per slot_fixes.yaml feedback "follow the revision as is"
|
||||
|
||||
id: https://nde.nl/ontology/hc/class/BioCustodianSubtype
|
||||
name: bio_custodian_subtype_class
|
||||
title: Biological Custodian Subtype Class
|
||||
version: 1.0.0
|
||||
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
schema: http://schema.org/
|
||||
skos: http://www.w3.org/2004/02/skos/core#
|
||||
wikidata: http://www.wikidata.org/entity/
|
||||
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/wikidata_id
|
||||
|
||||
default_prefix: hc
|
||||
|
||||
classes:
|
||||
BioCustodianSubtype:
|
||||
class_uri: hc:BioCustodianSubtype
|
||||
abstract: true
|
||||
description: |
|
||||
Abstract base class for biological/zoological custodian subtype taxonomy.
|
||||
|
||||
**Type/Types Pattern** (Rule 0b):
|
||||
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| `BioCustodianSubtype.yaml` | Abstract base class (this file) |
|
||||
| `BioCustodianSubtypes.yaml` | Concrete subclasses |
|
||||
|
||||
**Purpose**:
|
||||
|
||||
Provides fine-grained classification of biological custodians beyond the base
|
||||
`BioCustodianType` (GLAMORCUBESFIXPHDNT code "B"). Subtypes are derived from
|
||||
Wikidata entities representing specific types of:
|
||||
|
||||
- **Botanical Gardens** (Q167346): arboreta, alpine gardens, seed banks, etc.
|
||||
- **Zoological Parks** (Q43501): wildlife parks, safari parks, petting zoos, etc.
|
||||
- **Aquariums** (Q2281788): oceanariums, marine research facilities, etc.
|
||||
- **Protected Areas**: nature reserves, national parks, wildlife sanctuaries
|
||||
|
||||
**Wikidata Integration**:
|
||||
|
||||
Each subtype links to a Wikidata entity via `wikidata_id`. The 1142 subtypes
|
||||
in BioCustodianTypeEnum are candidates for promotion to concrete subclasses.
|
||||
|
||||
**Ontology Alignment**:
|
||||
|
||||
- `skos:Concept` - SKOS classification concept
|
||||
- `schema:Enumeration` - Schema.org enumeration pattern
|
||||
|
||||
**Migration Note**:
|
||||
|
||||
Created per slot_fixes.yaml revision for `bio_custodian_subtype` slot.
|
||||
Replaces direct use of BioCustodianTypeEnum range with structured class.
|
||||
|
||||
**Created**: 2026-01-17 per Rule 53/56 feedback.
|
||||
exact_mappings:
|
||||
- skos:Concept
|
||||
close_mappings:
|
||||
- schema:Enumeration
|
||||
slots:
|
||||
- has_or_had_identifier
|
||||
- has_or_had_label
|
||||
- has_or_had_description
|
||||
- wikidata_id
|
||||
slot_usage:
|
||||
has_or_had_identifier:
|
||||
identifier: true
|
||||
required: true
|
||||
range: uriorcurie
|
||||
examples:
|
||||
- value: hc:BioCustodianSubtype/BOTANICAL_GARDEN
|
||||
description: Standard botanical garden type
|
||||
- value: hc:BioCustodianSubtype/ZOOLOGICAL_GARDEN
|
||||
description: Standard zoological park type
|
||||
has_or_had_label:
|
||||
required: true
|
||||
range: string
|
||||
examples:
|
||||
- value: Botanical Garden
|
||||
- value: Zoological Park
|
||||
- value: Alpine Garden
|
||||
- value: Safari Park
|
||||
has_or_had_description:
|
||||
required: false
|
||||
range: string
|
||||
wikidata_id:
|
||||
required: false
|
||||
description: Wikidata entity ID for this subtype (e.g., Q167346 for botanical garden)
|
||||
examples:
|
||||
- value: Q167346
|
||||
description: botanical garden
|
||||
- value: Q43501
|
||||
description: zoo/zoological garden
|
||||
- value: Q2281788
|
||||
description: public aquarium
|
||||
comments:
|
||||
- Abstract base class for BioCustodianSubtypes hierarchy
|
||||
- Follows Type/Types naming convention (Rule 0b)
|
||||
- Created during bio_custodian_subtype migration (Rule 53/56)
|
||||
- Linked to BioCustodianTypeEnum for backward compatibility
|
||||
see_also:
|
||||
- https://www.wikidata.org/wiki/Q167346
|
||||
- https://www.wikidata.org/wiki/Q43501
|
||||
- https://www.wikidata.org/wiki/Q2281788
|
||||
|
|
@ -6,7 +6,7 @@ imports:
|
|||
- ./CustodianType
|
||||
- ../slots/collection_size
|
||||
- ../enums/BioCustodianTypeEnum
|
||||
- ../slots/bio_custodian_subtype
|
||||
- ../slots/has_or_had_hyponym # was: bio_custodian_subtype - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/conservation_breeding
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/living_collection
|
||||
|
|
@ -17,26 +17,6 @@ imports:
|
|||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/bio_custodian_subtype
|
||||
- ../slots/collection_size
|
||||
- ../slots/conservation_breeding
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/living_collection
|
||||
- ../slots/public_education
|
||||
- ../slots/research_program
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/specimen_type
|
||||
- ../slots/template_specificity
|
||||
- ../slots/bio_custodian_subtype
|
||||
- ../slots/collection_size
|
||||
- ../slots/conservation_breeding
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/living_collection
|
||||
- ../slots/public_education
|
||||
- ../slots/research_program
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/specimen_type
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
BioCustodianType:
|
||||
is_a: CustodianType
|
||||
|
|
@ -259,7 +239,7 @@ classes:
|
|||
\ both living and preserved collections) with independent temporal lifecycles.\n\n**See Also**:\n- Schema.org Zoo: `schema:Zoo`\n\
|
||||
- Schema.org Garden: `schema:Garden`\n- Darwin Core: `dwc:PreservedSpecimen`\n- TDWG Standards: https://www.tdwg.org/standards/\n"
|
||||
slots:
|
||||
- bio_custodian_subtype
|
||||
- has_or_had_hyponym # was: bio_custodian_subtype - migrated per Rule 53/56 (2026-01-17)
|
||||
- collection_size
|
||||
- conservation_breeding
|
||||
- has_or_had_custodian_type
|
||||
|
|
@ -293,3 +273,8 @@ classes:
|
|||
required: false
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:BioCustodianType"]'
|
||||
has_or_had_hyponym: # was: bio_custodian_subtype - migrated per Rule 53/56 (2026-01-17)
|
||||
range: BioCustodianTypeEnum
|
||||
description: >-
|
||||
Specific subtype from the BioCustodianTypeEnum taxonomy (1142 biological collection types).
|
||||
Each value links to a Wikidata entity describing a specific type of biological custodian.
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ imports:
|
|||
- ../slots/has_or_had_comment # was: taxon_remark - migrated per Rule 53
|
||||
- ../slots/has_or_had_authority # was: taxonomic_authority - migrated per Rule 53/56 (2026-01-16)
|
||||
- ./TaxonomicAuthority
|
||||
- ../slots/taxonomic_rank
|
||||
- ../slots/has_or_had_rank # was: taxonomic_rank - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/template_specificity
|
||||
# REMOVED 2026-01-14: ../slots/type_status - migrated to has_or_had_status with TypeStatus
|
||||
- ../slots/has_or_had_status
|
||||
|
|
@ -85,7 +85,7 @@ classes:
|
|||
\ aligns with Darwin Core (TDWG) occurrence/specimen standards:\n- `taxon_name` → dwc:scientificName\n- `collection_date`\
|
||||
\ → dwc:eventDate\n- `collector` → dwc:recordedBy\n- `preservation_method` → dwc:preparations\n- `gbif_id` → dwc:occurrenceID\
|
||||
\ (GBIF)\n\n**Taxonomic Data Model**:\n\n```\nBiologicalObject\n │\n ├── taxon_name (scientific name: \"Raphus\
|
||||
\ cucullatus\")\n │ │\n │ ├── common_name (\"Dodo\")\n │ ├── taxonomic_rank (SPECIES)\n \
|
||||
\ cucullatus\")\n │ │\n │ ├── common_name (\"Dodo\")\n │ ├── has_or_had_rank (SPECIES)\n \
|
||||
\ │ ├── has_or_had_authority (\"Linnaeus, 1758\")\n │ └── higher_classification (Aves → Columbiformes\
|
||||
\ → Columbidae)\n │\n ├── specimen_data\n │ │\n │ ├── specimen_type (HOLOTYPE, PARATYPE, etc.)\n\
|
||||
\ │ ├── is_type_specimen (boolean)\n │ ├── sex (MALE, FEMALE, UNKNOWN)\n │ ├── life_stage\
|
||||
|
|
@ -147,7 +147,7 @@ classes:
|
|||
- has_or_had_label # was: taxon_name - migrated per Rule 53
|
||||
- has_or_had_comment # was: taxon_remark - migrated per Rule 53
|
||||
- has_or_had_authority # was: taxonomic_authority - migrated per Rule 53/56 (2026-01-16)
|
||||
- taxonomic_rank
|
||||
- has_or_had_rank # was: taxonomic_rank - migrated per Rule 53/56 (2026-01-17)
|
||||
- template_specificity
|
||||
# REMOVED 2026-01-14: type_status - migrated to has_or_had_status with TypeStatus
|
||||
- has_or_had_status
|
||||
|
|
@ -219,9 +219,12 @@ classes:
|
|||
examples:
|
||||
- value: en
|
||||
- value: nl
|
||||
taxonomic_rank:
|
||||
has_or_had_rank: # was: taxonomic_rank - migrated per Rule 53/56 (2026-01-17)
|
||||
required: false
|
||||
range: string
|
||||
description: |
|
||||
Taxonomic rank of the identification.
|
||||
MIGRATED from taxonomic_rank per slot_fixes.yaml (Rule 53/56, 2026-01-17).
|
||||
examples:
|
||||
- value: SPECIES
|
||||
- value: SUBSPECIES
|
||||
|
|
@ -478,7 +481,7 @@ classes:
|
|||
common_name:
|
||||
- Dodo
|
||||
- Dronte
|
||||
taxonomic_rank: SPECIES
|
||||
has_or_had_rank: SPECIES # was: taxonomic_rank - migrated per Rule 53/56 (2026-01-17)
|
||||
higher_classification: Animalia|Chordata|Aves|Columbiformes|Columbidae|Raphus
|
||||
part_type:
|
||||
- HEAD
|
||||
|
|
@ -511,7 +514,7 @@ classes:
|
|||
taxonomic_rank: SPECIES
|
||||
common_name:
|
||||
- Giant Ground Sloth
|
||||
taxonomic_rank: SPECIES
|
||||
has_or_had_rank: SPECIES # was: taxonomic_rank - migrated per Rule 53/56 (2026-01-17)
|
||||
part_type:
|
||||
- SKELETON
|
||||
preservation_method: FOSSIL_PREPARED
|
||||
|
|
@ -533,7 +536,7 @@ classes:
|
|||
common_name:
|
||||
- English Oak
|
||||
- Pedunculate Oak
|
||||
taxonomic_rank: SPECIES
|
||||
has_or_had_rank: SPECIES # was: taxonomic_rank - migrated per Rule 53/56 (2026-01-17)
|
||||
has_or_had_authority: # was: taxonomic_authority - migrated per Rule 53/56 (2026-01-16)
|
||||
has_or_had_label: "Linnaeus, 1753"
|
||||
has_or_had_author: ["Carl Linnaeus"]
|
||||
|
|
|
|||
|
|
@ -0,0 +1,81 @@
|
|||
id: https://nde.nl/ontology/hc/class/BusinessCriticality
|
||||
name: business_criticality_class
|
||||
title: BusinessCriticality Class
|
||||
description: >-
|
||||
Business criticality level classification for continuity planning.
|
||||
|
||||
Provides structured classification for operational impact assessment:
|
||||
- **CRITICAL**: Institution cannot function without (hours)
|
||||
- **HIGH**: Significant impact if unavailable (days)
|
||||
- **MEDIUM**: Important but workarounds exist (weeks)
|
||||
- **LOW**: Minimal operational impact
|
||||
|
||||
Drives backup and disaster recovery priorities.
|
||||
|
||||
Created per slot_fixes.yaml revision for business_criticality migration (Rule 53/56/57).
|
||||
|
||||
version: 1.0.0
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
schema: http://schema.org/
|
||||
rico: https://www.ica.org/standards/RiC/ontology#
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_description
|
||||
default_prefix: hc
|
||||
|
||||
classes:
|
||||
BusinessCriticality:
|
||||
class_uri: hc:BusinessCriticality
|
||||
description: >-
|
||||
Business criticality level for continuity planning.
|
||||
|
||||
Structured class replacing string-valued business_criticality slot.
|
||||
Enables type classification via has_or_had_type.
|
||||
slots:
|
||||
- has_or_had_identifier
|
||||
- has_or_had_label
|
||||
- has_or_had_description
|
||||
slot_usage:
|
||||
has_or_had_label:
|
||||
description: >-
|
||||
Criticality level label (CRITICAL, HIGH, MEDIUM, LOW).
|
||||
required: true
|
||||
examples:
|
||||
- value: CRITICAL
|
||||
description: Institution cannot function without this (hours to impact)
|
||||
- value: HIGH
|
||||
description: Significant impact if unavailable (days to impact)
|
||||
- value: MEDIUM
|
||||
description: Important but workarounds exist (weeks to impact)
|
||||
- value: LOW
|
||||
description: Minimal operational impact
|
||||
has_or_had_description:
|
||||
description: >-
|
||||
Explanation of criticality assessment.
|
||||
required: false
|
||||
examples:
|
||||
- value: "Financial system required for daily operations, payroll processing"
|
||||
description: Why system is CRITICAL
|
||||
- value: "Historical project files, reference only, no operational dependency"
|
||||
description: Why system is MEDIUM
|
||||
examples:
|
||||
- value:
|
||||
has_or_had_label: CRITICAL
|
||||
has_or_had_description: "Financial system - required for operations, payroll cannot be processed without"
|
||||
description: Critical financial system
|
||||
- value:
|
||||
has_or_had_label: HIGH
|
||||
has_or_had_description: "Director's correspondence - important for decision continuity"
|
||||
description: High-priority communications
|
||||
- value:
|
||||
has_or_had_label: MEDIUM
|
||||
has_or_had_description: "Historical project files - reference only, operational workarounds exist"
|
||||
description: Medium-priority archives
|
||||
- value:
|
||||
has_or_had_label: LOW
|
||||
has_or_had_description: "Promotional materials archive - minimal impact on operations"
|
||||
description: Low-priority materials
|
||||
|
|
@ -0,0 +1,84 @@
|
|||
id: https://nde.nl/ontology/hc/class/BusinessModel
|
||||
name: business_model_class
|
||||
title: BusinessModel Class
|
||||
description: >-
|
||||
Business model classification for commercial heritage organizations.
|
||||
|
||||
Provides structured modeling of how commercial heritage operations are funded
|
||||
and generate revenue:
|
||||
- **Revenue sources**: Admission fees, merchandise, event rental, corporate funding
|
||||
- **Ownership**: Fully corporate-owned, subsidiary, joint venture, licensed
|
||||
- **Profitability**: Revenue-generating, break-even, subsidized by parent company
|
||||
- **Business function**: Marketing, tourism, corporate social responsibility
|
||||
- **Tax status**: For-profit corporation (not tax-exempt like museums)
|
||||
- **Reporting**: Reports to corporate board, integrated with marketing budget
|
||||
|
||||
Business model distinguishes commercial from non-profit heritage custodians.
|
||||
|
||||
Created per slot_fixes.yaml revision for business_model migration (Rule 53/56/57).
|
||||
|
||||
version: 1.0.0
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
schema: http://schema.org/
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_description
|
||||
default_prefix: hc
|
||||
|
||||
classes:
|
||||
BusinessModel:
|
||||
class_uri: hc:BusinessModel
|
||||
description: >-
|
||||
Business model classification for commercial heritage organizations.
|
||||
|
||||
Structured class replacing string-valued business_model slot.
|
||||
Models funding structure, revenue sources, ownership, and operational context.
|
||||
slots:
|
||||
- has_or_had_identifier
|
||||
- has_or_had_label
|
||||
- has_or_had_description
|
||||
slot_usage:
|
||||
has_or_had_label:
|
||||
description: >-
|
||||
Short label for business model type.
|
||||
required: true
|
||||
examples:
|
||||
- value: "For-profit brand attraction"
|
||||
description: Heineken Experience model
|
||||
- value: "Corporate archive, parent company funded"
|
||||
description: Ford Motor archive model
|
||||
- value: "Brand heritage center"
|
||||
description: Coca-Cola World of Coke model
|
||||
has_or_had_description:
|
||||
description: >-
|
||||
Detailed business model description including revenue sources,
|
||||
ownership structure, profitability, and reporting.
|
||||
required: false
|
||||
examples:
|
||||
- value: "For-profit brand attraction, Admission fees, Merchandise, Marketing budget"
|
||||
description: Full business model description
|
||||
- value: "Corporate archive within business, Fully funded by parent company, No public access"
|
||||
description: Internal corporate archive model
|
||||
- value: "Brand heritage center, Event venue rental, Corporate hospitality, Tourism revenue"
|
||||
description: Brand heritage center model
|
||||
examples:
|
||||
- value:
|
||||
has_or_had_label: "For-profit brand attraction"
|
||||
has_or_had_description: "Admission fees (€21), Merchandise sales, Beer tasting experiences, Event venue rental. Reports to Marketing division."
|
||||
description: Heineken Experience business model
|
||||
- value:
|
||||
has_or_had_label: "Corporate archive"
|
||||
has_or_had_description: "Fully funded by parent company, No direct revenue, Serves internal research and legal compliance needs"
|
||||
description: Ford Motor Company Archive model
|
||||
- value:
|
||||
has_or_had_label: "Brand heritage center"
|
||||
has_or_had_description: "Event venue rental, Corporate hospitality, Tourism revenue, Integrated with brand marketing budget"
|
||||
description: Coca-Cola World of Coke model
|
||||
- value:
|
||||
has_or_had_label: "Factory museum"
|
||||
has_or_had_description: "Visitor fees supplement production operations, Marketing tool for brand awareness, Tours integrated with factory operations"
|
||||
description: Factory museum business model
|
||||
|
|
@ -19,13 +19,19 @@ imports:
|
|||
- ../slots/keyword
|
||||
- ../slots/has_application_deadline
|
||||
- ../slots/has_application_opening_date
|
||||
- ../slots/call_description
|
||||
- ../slots/call_id
|
||||
- ../slots/call_identifier
|
||||
- ../slots/call_short_name
|
||||
- ../slots/call_status
|
||||
- ../slots/call_title
|
||||
- ../slots/call_url
|
||||
# REMOVED 2026-01-17: call_description - migrated to has_or_had_description per Rule 53
|
||||
# REMOVED 2026-01-17: call_id, call_identifier - migrated to has_or_had_identifier per Rule 53
|
||||
# REMOVED 2026-01-17: call_short_name, call_title - migrated to has_or_had_label per Rule 53
|
||||
# REMOVED 2026-01-17: call_status - migrated to has_or_had_status per Rule 53
|
||||
# REMOVED 2026-01-17: call_url - migrated to has_or_had_url per Rule 53
|
||||
- ../slots/has_or_had_description # was: call_description - migrated per Rule 53 (2026-01-17)
|
||||
- ../slots/has_or_had_identifier # was: call_id, call_identifier - migrated per Rule 53 (2026-01-17)
|
||||
- ../slots/has_or_had_label # was: call_short_name, call_title - migrated per Rule 53 (2026-01-17)
|
||||
- ../slots/has_or_had_status # was: call_status - migrated per Rule 53 (2026-01-17)
|
||||
- ../slots/has_or_had_url # was: call_url - migrated per Rule 53 (2026-01-17)
|
||||
- ./URL # for has_or_had_url range
|
||||
- ./Identifier # for has_or_had_identifier range
|
||||
- ./CallStatus # for has_or_had_status range (lifecycle status)
|
||||
- ../slots/co_funding_required
|
||||
- ../slots/eligible_applicant
|
||||
- ../slots/eligible_country
|
||||
|
|
@ -100,13 +106,11 @@ classes:
|
|||
slots:
|
||||
- has_application_deadline
|
||||
- has_application_opening_date
|
||||
- call_description
|
||||
- call_id
|
||||
- call_identifier
|
||||
- call_short_name
|
||||
- call_status
|
||||
- call_title
|
||||
- call_url
|
||||
- has_or_had_description # was: call_description - migrated per Rule 53 (2026-01-17)
|
||||
- has_or_had_identifier # was: call_id, call_identifier - migrated per Rule 53 (2026-01-17)
|
||||
- has_or_had_label # was: call_short_name, call_title - migrated per Rule 53 (2026-01-17)
|
||||
- has_or_had_status # was: call_status - migrated per Rule 53 (2026-01-17)
|
||||
- has_or_had_url # was: call_url - migrated per Rule 53 (2026-01-17)
|
||||
- co_funding_required
|
||||
- contact_email
|
||||
- eligible_applicant
|
||||
|
|
@ -131,39 +135,111 @@ classes:
|
|||
- has_or_had_range
|
||||
- has_or_had_provenance # was: web_observation - migrated per Rule 53
|
||||
slot_usage:
|
||||
call_id:
|
||||
has_or_had_identifier:
|
||||
identifier: true
|
||||
required: true
|
||||
range: uriorcurie
|
||||
pattern: ^https://nde\.nl/ontology/hc/call/[a-z0-9-]+/[a-z0-9-]+$
|
||||
range: Identifier
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: true
|
||||
description: |
|
||||
Unique identifier(s) for this funding call.
|
||||
MIGRATED from call_id, call_identifier per slot_fixes.yaml (Rule 53, 2026-01-17).
|
||||
|
||||
Consolidates:
|
||||
- call_id (dcterms:identifier) - Primary call identifier (identifier: true)
|
||||
- call_identifier (dcterms:identifier) - External identifiers (EU F&T, etc.)
|
||||
|
||||
Format: https://nde.nl/ontology/hc/call/{issuing-org-slug}/{call-code}
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
description: Horizon Europe CL2 heritage call
|
||||
- value: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025
|
||||
- value:
|
||||
identifier_value: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
identifier_scheme: URI
|
||||
description: Horizon Europe CL2 heritage call (primary identifier)
|
||||
- value:
|
||||
identifier_value: HORIZON-CL2-2025-HERITAGE-01
|
||||
identifier_scheme: EU_FUNDING_TENDERS
|
||||
description: EU Funding & Tenders portal ID
|
||||
- value:
|
||||
identifier_value: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025
|
||||
identifier_scheme: URI
|
||||
description: National Lottery Heritage Fund medium grants
|
||||
call_title:
|
||||
has_or_had_label:
|
||||
required: true
|
||||
range: string
|
||||
multivalued: true
|
||||
description: |
|
||||
Human-readable labels for this funding call.
|
||||
MIGRATED from call_title, call_short_name per slot_fixes.yaml (Rule 53, 2026-01-17).
|
||||
|
||||
Consolidates:
|
||||
- call_title (dcterms:title) - Official call title (required)
|
||||
- call_short_name (skos:altLabel) - Short name/code
|
||||
|
||||
First label should be the official title, additional labels are short names/codes.
|
||||
examples:
|
||||
- value: Cultural heritage, cultural and creative industries
|
||||
description: Horizon Europe Cluster 2 call title
|
||||
description: Horizon Europe Cluster 2 call title (official)
|
||||
- value: HORIZON-CL2-2025-HERITAGE-01
|
||||
description: Horizon Europe call code (short name)
|
||||
- value: European Cooperation Projects
|
||||
description: Creative Europe call title
|
||||
call_short_name:
|
||||
range: string
|
||||
examples:
|
||||
- value: CL2-2025-HERITAGE-01
|
||||
description: Horizon Europe call code
|
||||
description: Creative Europe call title (official)
|
||||
- value: CREA-CULT-2025-COOP
|
||||
description: Creative Europe cooperation call code
|
||||
call_status:
|
||||
has_or_had_status:
|
||||
required: true
|
||||
range: CallForApplicationStatusEnum
|
||||
description: |
|
||||
Current lifecycle status of the funding call.
|
||||
MIGRATED from call_status per slot_fixes.yaml (Rule 53, 2026-01-17).
|
||||
|
||||
See CallForApplicationStatusEnum for status values:
|
||||
- ANNOUNCED: Call published, not yet open
|
||||
- OPEN: Currently accepting applications
|
||||
- CLOSING_SOON: < 30 days until deadline
|
||||
- CLOSED: Deadline passed
|
||||
- UNDER_REVIEW: Evaluation in progress
|
||||
- RESULTS_PUBLISHED: Decisions announced
|
||||
- CANCELLED: Call terminated
|
||||
- REOPENED: Previously closed call reactivated
|
||||
examples:
|
||||
- value: OPEN
|
||||
description: Currently accepting applications
|
||||
- value: CLOSING_SOON
|
||||
description: Deadline approaching
|
||||
has_or_had_description:
|
||||
range: string
|
||||
description: |
|
||||
Detailed description of the funding call and its objectives.
|
||||
MIGRATED from call_description per slot_fixes.yaml (Rule 53, 2026-01-17).
|
||||
|
||||
Maps to dcterms:description for grant/funding opportunity descriptions.
|
||||
examples:
|
||||
- value: |
|
||||
This call supports research and innovation addressing cultural heritage
|
||||
preservation, digitisation, and access. Projects should develop new
|
||||
methods, technologies, and approaches for safeguarding tangible and
|
||||
intangible cultural heritage.
|
||||
description: Horizon Europe heritage call description
|
||||
has_or_had_url:
|
||||
range: URL
|
||||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: true
|
||||
description: |
|
||||
Official call documentation or application portal URL(s).
|
||||
MIGRATED from call_url per slot_fixes.yaml (Rule 53, 2026-01-17).
|
||||
|
||||
Maps to schema:url for web addresses.
|
||||
examples:
|
||||
- value:
|
||||
url_value: https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/opportunities/topic-details/horizon-cl2-2025-heritage-01
|
||||
url_type: application_portal
|
||||
description: Horizon Europe call application portal
|
||||
- value:
|
||||
url_value: https://www.heritagefund.org.uk/funding/medium-grants
|
||||
url_type: documentation
|
||||
description: National Lottery Heritage Fund documentation
|
||||
has_application_deadline:
|
||||
required: true
|
||||
range: date
|
||||
|
|
@ -252,22 +328,24 @@ classes:
|
|||
- https://www.europanostra.org/our-work/awards/
|
||||
examples:
|
||||
- value:
|
||||
call_id: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
call_title: Cultural heritage, cultural and creative industries
|
||||
call_short_name: HORIZON-CL2-2025-HERITAGE-01
|
||||
call_description: 'This call supports research and innovation addressing cultural heritage
|
||||
|
||||
has_or_had_identifier: # was: call_id, call_identifier - migrated per Rule 53 (2026-01-17)
|
||||
- identifier_value: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
identifier_scheme: URI
|
||||
- identifier_value: HORIZON-CL2-2025-HERITAGE-01
|
||||
identifier_scheme: EU_FUNDING_TENDERS
|
||||
has_or_had_label: # was: call_title, call_short_name - migrated per Rule 53 (2026-01-17)
|
||||
- Cultural heritage, cultural and creative industries
|
||||
- HORIZON-CL2-2025-HERITAGE-01
|
||||
has_or_had_description: | # was: call_description - migrated per Rule 53 (2026-01-17)
|
||||
This call supports research and innovation addressing cultural heritage
|
||||
preservation, digitisation, and access. Projects should develop new
|
||||
|
||||
methods, technologies, and approaches for safeguarding tangible and
|
||||
|
||||
intangible cultural heritage while promoting sustainable use and
|
||||
|
||||
citizen engagement.
|
||||
|
||||
'
|
||||
call_status: OPEN
|
||||
call_url: https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/opportunities/topic-details/horizon-cl2-2025-heritage-01
|
||||
has_or_had_status: OPEN # was: call_status - migrated per Rule 53 (2026-01-17)
|
||||
has_or_had_url: # was: call_url - migrated per Rule 53 (2026-01-17)
|
||||
- url_value: https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/opportunities/topic-details/horizon-cl2-2025-heritage-01
|
||||
url_type: application_portal
|
||||
application_opening_date: '2025-01-15'
|
||||
application_deadline: '2025-09-16'
|
||||
results_expected_date: '2026-03-01'
|
||||
|
|
@ -335,20 +413,23 @@ classes:
|
|||
- https://nde.nl/ontology/hc/project/nde/heritage-digitization-2025
|
||||
description: Horizon Europe CL2 2025 Cultural Heritage call
|
||||
- value:
|
||||
call_id: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025-q4
|
||||
call_title: Medium grants - Heritage Fund
|
||||
call_short_name: MG-2025-Q4
|
||||
call_description: 'Medium grants support heritage projects seeking between £250,000 and
|
||||
|
||||
has_or_had_identifier: # was: call_id - migrated per Rule 53 (2026-01-17)
|
||||
- identifier_value: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025-q4
|
||||
identifier_scheme: URI
|
||||
- identifier_value: MG-2025-Q4
|
||||
identifier_scheme: INTERNAL_CODE
|
||||
has_or_had_label: # was: call_title, call_short_name - migrated per Rule 53 (2026-01-17)
|
||||
- Medium grants - Heritage Fund
|
||||
- MG-2025-Q4
|
||||
has_or_had_description: | # was: call_description - migrated per Rule 53 (2026-01-17)
|
||||
Medium grants support heritage projects seeking between £250,000 and
|
||||
£5 million. Projects must achieve outcomes for heritage, people, and
|
||||
|
||||
communities. Suitable for conservation, interpretation, community
|
||||
|
||||
engagement, and skills development projects.
|
||||
|
||||
'
|
||||
call_status: OPEN
|
||||
call_url: https://www.heritagefund.org.uk/funding/medium-grants
|
||||
has_or_had_status: OPEN # was: call_status - migrated per Rule 53 (2026-01-17)
|
||||
has_or_had_url: # was: call_url - migrated per Rule 53 (2026-01-17)
|
||||
- url_value: https://www.heritagefund.org.uk/funding/medium-grants
|
||||
url_type: documentation
|
||||
application_deadline: '2025-12-31'
|
||||
has_or_had_range:
|
||||
- minimal_of_minimal:
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CantonalArchiveRecordSetType
|
||||
- ./CantonalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CantonalArchiveRecordSetType
|
||||
- ./CantonalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
CantonalGovernmentFonds:
|
||||
is_a: CantonalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -0,0 +1,245 @@
|
|||
id: https://nde.nl/ontology/hc/class/Capacity
|
||||
name: Capacity
|
||||
title: Capacity Class
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
qudt: http://qudt.org/schema/qudt/
|
||||
schema: http://schema.org/
|
||||
dcterms: http://purl.org/dc/terms/
|
||||
imports:
|
||||
- linkml:types
|
||||
# Enums
|
||||
- ../enums/CapacityTypeEnum
|
||||
# RiC-O style generic slots
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_measurement_unit
|
||||
- ../slots/has_or_had_quantity
|
||||
- ../slots/temporal_extent
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
# Capacity-specific slots
|
||||
- ../slots/capacity_value
|
||||
- ../slots/capacity_type
|
||||
- ../slots/is_estimate
|
||||
# Class imports
|
||||
- ./MeasureUnit
|
||||
- ./Quantity
|
||||
- ./TimeSpan
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Capacity:
|
||||
class_uri: hc:Capacity
|
||||
description: >-
|
||||
Storage or holding capacity measurement for heritage facilities.
|
||||
|
||||
**RULE 53 MIGRATION**:
|
||||
|
||||
This class consolidates the following bespoke capacity slots:
|
||||
- capacity_cubic_meters → capacity_value + VOLUME type + m³ unit
|
||||
- capacity_linear_meters → capacity_value + SHELF_LENGTH type + m unit
|
||||
- capacity_item → capacity_value + ITEM_COUNT type + items unit
|
||||
- capacity_description → has_or_had_description
|
||||
|
||||
**ONTOLOGY ALIGNMENT**:
|
||||
|
||||
- Extends `qudt:Quantity` pattern for measured values
|
||||
- Uses MeasureUnit for structured unit representation
|
||||
- Supports temporal validity via TimeSpan
|
||||
|
||||
**CAPACITY TYPES**:
|
||||
|
||||
| Type | Description | Unit Examples |
|
||||
|------|-------------|---------------|
|
||||
| VOLUME | Cubic capacity | m³, ft³ |
|
||||
| SHELF_LENGTH | Linear shelf meters | m, ft |
|
||||
| FLOOR_AREA | Floor space | m², ft² |
|
||||
| ITEM_COUNT | Number of items | boxes, folders, objects |
|
||||
| WEIGHT | Weight capacity | kg, tons |
|
||||
| SEATING | Seating capacity | seats, persons |
|
||||
|
||||
**EXAMPLES**:
|
||||
|
||||
Archive depot (linear meters):
|
||||
```yaml
|
||||
has_or_had_capacity:
|
||||
- capacity_value: 8000.0
|
||||
capacity_type: SHELF_LENGTH
|
||||
has_or_had_measurement_unit:
|
||||
has_or_had_type: LINEAR_METER
|
||||
has_or_had_symbol: "m"
|
||||
has_or_had_description: Total linear meters of shelving capacity
|
||||
```
|
||||
|
||||
Cold storage (volume):
|
||||
```yaml
|
||||
has_or_had_capacity:
|
||||
- capacity_value: 2500.0
|
||||
capacity_type: VOLUME
|
||||
has_or_had_measurement_unit:
|
||||
has_or_had_type: CUBIC_METER
|
||||
has_or_had_symbol: "m³"
|
||||
```
|
||||
|
||||
Archive box storage (items):
|
||||
```yaml
|
||||
has_or_had_capacity:
|
||||
- capacity_value: 50000
|
||||
capacity_type: ITEM_COUNT
|
||||
has_or_had_measurement_unit:
|
||||
has_or_had_type: ITEM
|
||||
has_or_had_symbol: "archive boxes"
|
||||
```
|
||||
exact_mappings:
|
||||
- hc:Capacity
|
||||
close_mappings:
|
||||
- qudt:Quantity
|
||||
- schema:QuantitativeValue
|
||||
related_mappings:
|
||||
- schema:floorSize
|
||||
- dcterms:extent
|
||||
- premis:StorageLocation
|
||||
slots:
|
||||
- has_or_had_identifier
|
||||
- capacity_value
|
||||
- capacity_type
|
||||
- has_or_had_measurement_unit
|
||||
- has_or_had_quantity
|
||||
- has_or_had_description
|
||||
- temporal_extent
|
||||
- is_estimate
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
slot_usage:
|
||||
has_or_had_identifier:
|
||||
range: uriorcurie
|
||||
required: false
|
||||
description: >-
|
||||
Optional identifier for this capacity specification.
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/capacity/na-depot-b-shelving
|
||||
description: National Archives depot B shelf capacity
|
||||
capacity_value:
|
||||
range: float
|
||||
required: true
|
||||
description: >-
|
||||
The numeric value of the capacity.
|
||||
MIGRATED from capacity_cubic_meters, capacity_linear_meters,
|
||||
capacity_item per slot_fixes.yaml (Rule 53).
|
||||
examples:
|
||||
- value: 8000.0
|
||||
description: 8,000 linear meters
|
||||
- value: 2500.0
|
||||
description: 2,500 cubic meters
|
||||
- value: 50000
|
||||
description: 50,000 archive boxes
|
||||
capacity_type:
|
||||
range: CapacityTypeEnum
|
||||
required: false
|
||||
description: >-
|
||||
The type of capacity measurement (volume, length, count, etc.).
|
||||
examples:
|
||||
- value: SHELF_LENGTH
|
||||
- value: VOLUME
|
||||
- value: ITEM_COUNT
|
||||
- value: FLOOR_AREA
|
||||
has_or_had_measurement_unit:
|
||||
range: MeasureUnit
|
||||
required: false
|
||||
inlined: true
|
||||
description: >-
|
||||
The unit of measurement for this capacity.
|
||||
Uses MeasureUnit class for structured unit representation.
|
||||
examples:
|
||||
- value:
|
||||
has_or_had_type: LINEAR_METER
|
||||
has_or_had_symbol: "m"
|
||||
description: Linear meters (shelf length)
|
||||
- value:
|
||||
has_or_had_type: CUBIC_METER
|
||||
has_or_had_symbol: "m³"
|
||||
description: Cubic meters (volume)
|
||||
- value:
|
||||
has_or_had_type: ITEM
|
||||
has_or_had_symbol: "archive boxes"
|
||||
description: Item count
|
||||
has_or_had_quantity:
|
||||
range: Quantity
|
||||
required: false
|
||||
inlined: true
|
||||
description: >-
|
||||
Alternative structured quantity representation.
|
||||
Use for complex measurements requiring full Quantity semantics.
|
||||
examples:
|
||||
- value:
|
||||
quantity_value: 8000.0
|
||||
quantity_type: CAPACITY
|
||||
quantity_unit: "linear meters"
|
||||
has_or_had_description:
|
||||
range: string
|
||||
required: false
|
||||
description: >-
|
||||
Textual description of the capacity.
|
||||
MIGRATED from capacity_description per slot_fixes.yaml (Rule 53).
|
||||
examples:
|
||||
- value: "Approximately 5,000 linear meters of shelving across 3 floors"
|
||||
- value: "Large-scale art storage for paintings up to 4m x 6m"
|
||||
- value: "1,200 linear meters of cold storage shelving"
|
||||
temporal_extent:
|
||||
range: TimeSpan
|
||||
required: false
|
||||
inlined: true
|
||||
description: >-
|
||||
Time period when this capacity specification is/was valid.
|
||||
examples:
|
||||
- value:
|
||||
begin_of_the_begin: "2020-01-01T00:00:00Z"
|
||||
end_of_the_end: "2030-12-31T23:59:59Z"
|
||||
description: Capacity valid for decade
|
||||
is_estimate:
|
||||
range: boolean
|
||||
required: false
|
||||
ifabsent: 'false'
|
||||
description: >-
|
||||
Whether this capacity is an estimate rather than exact measurement.
|
||||
comments:
|
||||
- Created 2026-01-17 per Rule 53 to consolidate capacity_* slots
|
||||
- Based on QUDT Quantity pattern with capacity-specific typing
|
||||
- Supports multiple capacity types (volume, length, count, area)
|
||||
see_also:
|
||||
- http://qudt.org/schema/qudt/Quantity
|
||||
- https://schema.org/QuantitativeValue
|
||||
examples:
|
||||
- value:
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/capacity/rijksmuseum-depot-shelving
|
||||
capacity_value: 8000.0
|
||||
capacity_type: SHELF_LENGTH
|
||||
has_or_had_measurement_unit:
|
||||
has_or_had_type: LINEAR_METER
|
||||
has_or_had_symbol: "m"
|
||||
has_or_had_description: Total linear shelf capacity in Depot Amersfoort
|
||||
is_estimate: false
|
||||
description: Archive depot shelf capacity (was capacity_linear_meters)
|
||||
- value:
|
||||
capacity_value: 2500.0
|
||||
capacity_type: VOLUME
|
||||
has_or_had_measurement_unit:
|
||||
has_or_had_type: CUBIC_METER
|
||||
has_or_had_symbol: "m³"
|
||||
description: Cold storage volume capacity (was capacity_cubic_meters)
|
||||
- value:
|
||||
capacity_value: 50000
|
||||
capacity_type: ITEM_COUNT
|
||||
has_or_had_measurement_unit:
|
||||
has_or_had_type: ITEM
|
||||
has_or_had_symbol: "archive boxes"
|
||||
has_or_had_description: Capacity for 50,000 standard archive boxes
|
||||
description: Archive box storage capacity (was capacity_item)
|
||||
- value:
|
||||
has_or_had_description: "Approximately 5,000 linear meters of shelving across 3 floors. Large-scale art storage for paintings up to 4m x 6m."
|
||||
is_estimate: true
|
||||
description: Descriptive capacity only (was capacity_description)
|
||||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CathedralArchiveRecordSetType
|
||||
- ./CathedralArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CathedralArchiveRecordSetType
|
||||
- ./CathedralArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ChapterRecordsFonds:
|
||||
is_a: CathedralArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,44 +11,44 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ChurchArchiveRecordSetType
|
||||
- ./ChurchArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ChurchArchiveRecordSetType
|
||||
- ./ChurchArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ChurchGovernanceFonds:
|
||||
is_a: ChurchArchiveRecordSetType
|
||||
|
|
@ -104,6 +104,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType"]'
|
||||
|
|
@ -184,6 +190,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType"]'
|
||||
|
|
@ -253,6 +265,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType", "hc:LibraryType"]'
|
||||
|
|
@ -325,6 +344,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- legal_note
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType"]'
|
||||
|
|
@ -403,6 +429,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType", "hc:HeritageSocietyType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ChurchArchiveSwedenRecordSetType
|
||||
- ./ChurchArchiveSweden
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ChurchArchiveSwedenRecordSetType
|
||||
- ./ChurchArchiveSweden
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
SwedishParishRecordSeries:
|
||||
is_a: ChurchArchiveSwedenRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -92,6 +97,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ClimateArchiveRecordSetType
|
||||
- ./ClimateArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ClimateArchiveRecordSetType
|
||||
- ./ClimateArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ClimateDataCollection:
|
||||
is_a: ClimateArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CollectingArchivesRecordSetType
|
||||
- ./CollectingArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CollectingArchivesRecordSetType
|
||||
- ./CollectingArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
CollectedMaterialsFonds:
|
||||
is_a: CollectingArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ComarcalArchiveRecordSetType
|
||||
- ./ComarcalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ComarcalArchiveRecordSetType
|
||||
- ./ComarcalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ComarcalAdministrationFonds:
|
||||
is_a: ComarcalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ./CustodianType
|
||||
- ../enums/CommercialCustodianTypeEnum
|
||||
- ../slots/business_model
|
||||
- ../slots/has_or_had_model # was: business_model - migrated per Rule 53/56/57 (2026-01-17)
|
||||
- ./BusinessModel
|
||||
- ../slots/collection_purpose
|
||||
- ../slots/commercial_activity
|
||||
- ../slots/commercial_custodian_subtype
|
||||
|
|
@ -27,26 +28,6 @@ imports:
|
|||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/business_model
|
||||
- ../slots/collection_purpose
|
||||
- ../slots/commercial_activity
|
||||
- ../slots/commercial_custodian_subtype
|
||||
- ../slots/corporate_integration
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/heritage_holding
|
||||
- ../slots/public_access
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/business_model
|
||||
- ../slots/collection_purpose
|
||||
- ../slots/commercial_activity
|
||||
- ../slots/commercial_custodian_subtype
|
||||
- ../slots/corporate_integration
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/heritage_holding
|
||||
- ../slots/public_access
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -201,7 +182,7 @@ classes:
|
|||
\ hc:CompanyMuseum,\n hc:BrandHeritageCenter ;\n schema:url <https://nde.nl/ontology/hc/class/commercial-organization-type>\
|
||||
\ .\n\n# Example: Heineken Experience (corporate brand heritage center in Amsterdam)\n<https://w3id.org/heritage/custodian/nl/heineken-experience>\n\
|
||||
\ a schema:Corporation, schema:TouristAttraction, crm:E74_Group, hc:CommercialOrganization ;\n hc:custodian_type hc:CommercialOrganizationType\
|
||||
\ ;\n hc:business_model \"For-profit brand heritage attraction\", \"Admission fees\", \"Merchandise sales\", \"Brand\
|
||||
\ ;\n hc:has_or_had_model \"For-profit brand heritage attraction\", \"Admission fees\", \"Merchandise sales\", \"Brand\
|
||||
\ marketing\" ;\n hc:collection_purpose \"Brand heritage communication\", \"Consumer engagement\", \"Tourism revenue\"\
|
||||
, \"Corporate identity\" ;\n hc:corporate_integration \"Fully owned by Heineken N.V.\", \"Marketing department\", \"\
|
||||
Brand management division\" ;\n hc:public_access \"Daily visitor hours 10:30-19:30\", \"Paid admission\", \"Self-guided\
|
||||
|
|
@ -224,7 +205,7 @@ classes:
|
|||
- schema:Museum
|
||||
- schema:TouristAttraction
|
||||
slots:
|
||||
- business_model
|
||||
- has_or_had_model # was: business_model - migrated per Rule 53/56 (2026-01-17)
|
||||
- collection_purpose
|
||||
- commercial_activity
|
||||
- commercial_custodian_subtype
|
||||
|
|
@ -235,15 +216,25 @@ classes:
|
|||
- specificity_annotation
|
||||
- template_specificity
|
||||
slot_usage:
|
||||
business_model:
|
||||
range: string
|
||||
has_or_had_model: # was: business_model - migrated per Rule 53/56/57 (2026-01-17)
|
||||
range: BusinessModel
|
||||
inlined: true
|
||||
required: true
|
||||
description: >-
|
||||
How the commercial heritage operation is funded and generates revenue.
|
||||
Describes funding structure, ownership, profitability, business function.
|
||||
examples:
|
||||
- value: For-profit brand attraction, Admission, Merchandise
|
||||
- value:
|
||||
has_or_had_label: "For-profit brand attraction"
|
||||
has_or_had_description: "Admission fees, Merchandise sales, Event rental"
|
||||
description: Heineken Experience model
|
||||
- value: Corporate archive, Parent company funded, Internal
|
||||
- value:
|
||||
has_or_had_label: "Corporate archive"
|
||||
has_or_had_description: "Parent company funded, Internal research and compliance"
|
||||
description: Ford Motor archive model
|
||||
- value: Brand center, Event rental, Hospitality, Tourism
|
||||
- value:
|
||||
has_or_had_label: "Brand heritage center"
|
||||
has_or_had_description: "Event rental, Hospitality, Tourism revenue"
|
||||
description: Coca-Cola World of Coke model
|
||||
collection_purpose:
|
||||
range: string
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CommunityArchiveRecordSetType
|
||||
- ./CommunityArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CommunityArchiveRecordSetType
|
||||
- ./CommunityArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
CommunityOrganizationFonds:
|
||||
is_a: CommunityArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -12,44 +12,44 @@ prefixes:
|
|||
org: http://www.w3.org/ns/org#
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CompanyArchiveRecordSetType
|
||||
- ./CompanyArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CompanyArchiveRecordSetType
|
||||
- ./CompanyArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
CorporateGovernanceFonds:
|
||||
is_a: CompanyArchiveRecordSetType
|
||||
|
|
@ -108,6 +108,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- legal_note
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType"]'
|
||||
|
|
@ -185,6 +192,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType", "hc:ResearchOrganizationType"]'
|
||||
|
|
@ -263,6 +276,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType", "hc:MuseumType"]'
|
||||
|
|
@ -335,6 +354,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType"]'
|
||||
|
|
@ -412,6 +438,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType", "hc:LibraryType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CurrentArchiveRecordSetType
|
||||
- ./CurrentArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CurrentArchiveRecordSetType
|
||||
- ./CurrentArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ActiveRecordsFonds:
|
||||
is_a: CurrentArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@ imports:
|
|||
# REMOVED 2026-01-15: ../slots/backup_status - migrated to has_or_had_status with BackupStatus
|
||||
- ../slots/has_or_had_status
|
||||
- ./BackupStatus
|
||||
- ../slots/business_criticality
|
||||
- ../slots/has_or_had_business_criticality # was: business_criticality - migrated per Rule 53/56/57 (2026-01-17)
|
||||
- ./BusinessCriticality
|
||||
- ../slots/creating_function
|
||||
- ../slots/data_sensitivity
|
||||
- ../slots/estimated_volume
|
||||
|
|
@ -109,7 +110,7 @@ classes:
|
|||
- has_administration_name
|
||||
# REMOVED 2026-01-15: backup_status - migrated to has_or_had_status with BackupStatus
|
||||
- has_or_had_status
|
||||
- business_criticality
|
||||
- has_or_had_business_criticality # was: business_criticality - migrated per Rule 53/56/57 (2026-01-17)
|
||||
- creating_function
|
||||
- data_sensitivity
|
||||
- estimated_volume
|
||||
|
|
@ -218,14 +219,23 @@ classes:
|
|||
examples:
|
||||
- value: true
|
||||
description: Contains employee personal data
|
||||
business_criticality:
|
||||
range: string
|
||||
has_or_had_business_criticality: # was: business_criticality - migrated per Rule 53/56/57 (2026-01-17)
|
||||
range: BusinessCriticality
|
||||
inlined: true
|
||||
required: false
|
||||
description: >-
|
||||
Business criticality level for continuity planning.
|
||||
Levels: CRITICAL (hours), HIGH (days), MEDIUM (weeks), LOW (minimal impact).
|
||||
Drives backup and disaster recovery priorities.
|
||||
examples:
|
||||
- value: CRITICAL
|
||||
description: Financial system - required for operations
|
||||
- value: MEDIUM
|
||||
description: Historical project files - reference only
|
||||
- value:
|
||||
has_or_had_label: CRITICAL
|
||||
has_or_had_description: Financial system - required for operations
|
||||
description: Critical financial system
|
||||
- value:
|
||||
has_or_had_label: MEDIUM
|
||||
has_or_had_description: Historical project files - reference only
|
||||
description: Medium priority archives
|
||||
backup_status:
|
||||
range: string
|
||||
required: false
|
||||
|
|
@ -302,7 +312,9 @@ classes:
|
|||
expected_transfer_date: '2028-01-01'
|
||||
data_sensitivity: CONFIDENTIAL
|
||||
gdpr_relevant: true
|
||||
business_criticality: HIGH
|
||||
has_or_had_business_criticality: # was: business_criticality - migrated to BusinessCriticality class
|
||||
has_or_had_label: HIGH
|
||||
has_or_had_description: Director's correspondence - important for decision continuity
|
||||
has_or_had_status:
|
||||
has_or_had_type:
|
||||
- has_or_had_short_code: DAILY_AUTOMATED
|
||||
|
|
@ -330,7 +342,9 @@ classes:
|
|||
retention_period_years: 20
|
||||
data_sensitivity: SPECIAL_CATEGORY - Personnel data
|
||||
gdpr_relevant: true
|
||||
business_criticality: CRITICAL
|
||||
has_or_had_business_criticality: # was: business_criticality - migrated to BusinessCriticality class
|
||||
has_or_had_label: CRITICAL
|
||||
has_or_had_description: HR personnel system - payroll and compliance critical
|
||||
has_or_had_status:
|
||||
has_or_had_type:
|
||||
- has_or_had_short_code: REALTIME_REPLICATION
|
||||
|
|
@ -360,7 +374,9 @@ classes:
|
|||
retention_period_years: null
|
||||
data_sensitivity: INTERNAL
|
||||
gdpr_relevant: false
|
||||
business_criticality: HIGH
|
||||
has_or_had_business_criticality: # was: business_criticality - migrated to BusinessCriticality class
|
||||
has_or_had_label: HIGH
|
||||
has_or_had_description: Conservation records - permanently linked to collection objects
|
||||
has_or_had_status:
|
||||
has_or_had_type:
|
||||
- has_or_had_short_code: DAILY_AUTOMATED
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./CustodianArchiveRecordSetType
|
||||
- ./CustodianArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./CustodianArchiveRecordSetType
|
||||
- ./CustodianArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
CustodialRecordsFonds:
|
||||
is_a: CustodianArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DarkArchiveRecordSetType
|
||||
- ./DarkArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DarkArchiveRecordSetType
|
||||
- ./DarkArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
PreservationCopyCollection:
|
||||
is_a: DarkArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DepartmentalArchivesRecordSetType
|
||||
- ./DepartmentalArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DepartmentalArchivesRecordSetType
|
||||
- ./DepartmentalArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DepartmentAdministrationFonds:
|
||||
is_a: DepartmentalArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DepositArchiveRecordSetType
|
||||
- ./DepositArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DepositArchiveRecordSetType
|
||||
- ./DepositArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DepositedRecordsFonds:
|
||||
is_a: DepositArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ imports:
|
|||
- ../slots/confidence_score
|
||||
- ../slots/start_time
|
||||
- ../slots/end_time
|
||||
- ../slots/bounding_box
|
||||
- ../slots/has_or_had_geographic_extent # was: bounding_box - migrated per Rule 53/56 (2026-01-17)
|
||||
|
||||
classes:
|
||||
DetectedEntity:
|
||||
|
|
@ -74,7 +74,7 @@ classes:
|
|||
└── has_or_had_detected → DetectedEntity[]
|
||||
├── has_or_had_type → TextType (TITLE, CAPTION, etc.)
|
||||
├── confidence_score → 0.87
|
||||
├── bounding_box → [x1, y1, x2, y2]
|
||||
├── has_or_had_geographic_extent → [x1, y1, x2, y2]
|
||||
└── has_or_had_label → "Museum Tour"
|
||||
```
|
||||
|
||||
|
|
@ -110,7 +110,7 @@ classes:
|
|||
- confidence_score
|
||||
- start_time
|
||||
- end_time
|
||||
- bounding_box
|
||||
- has_or_had_geographic_extent # was: bounding_box - migrated per Rule 53/56 (2026-01-17)
|
||||
|
||||
slot_usage:
|
||||
has_or_had_identifier:
|
||||
|
|
@ -166,11 +166,11 @@ classes:
|
|||
examples:
|
||||
- value: "00:03:17"
|
||||
|
||||
bounding_box:
|
||||
has_or_had_geographic_extent: # was: bounding_box - migrated per Rule 53/56 (2026-01-17)
|
||||
range: float
|
||||
multivalued: true
|
||||
required: false
|
||||
description: "Spatial location as [x1, y1, x2, y2] coordinates"
|
||||
description: "Spatial location as [x1, y1, x2, y2] pixel coordinates for image detection"
|
||||
examples:
|
||||
- value: [100.0, 50.0, 400.0, 150.0]
|
||||
description: "Bounding box for detected text region"
|
||||
|
|
@ -209,5 +209,5 @@ classes:
|
|||
has_or_had_type: "TextType:TITLE"
|
||||
has_or_had_label: "Museum Tour Guide"
|
||||
confidence_score: 0.87
|
||||
bounding_box: [100.0, 50.0, 400.0, 150.0]
|
||||
has_or_had_geographic_extent: [100.0, 50.0, 400.0, 150.0] # was: bounding_box
|
||||
description: "On-screen text detection"
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DigitalArchiveRecordSetType
|
||||
- ./DigitalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DigitalArchiveRecordSetType
|
||||
- ./DigitalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DigitalObjectCollection:
|
||||
is_a: DigitalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DimArchivesRecordSetType
|
||||
- ./DimArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DimArchivesRecordSetType
|
||||
- ./DimArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DigitallyInaccessibleCollection:
|
||||
is_a: DimArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DiocesanArchiveRecordSetType
|
||||
- ./DiocesanArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DiocesanArchiveRecordSetType
|
||||
- ./DiocesanArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DiocesanAdministrationFonds:
|
||||
is_a: DiocesanArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DistrictArchiveGermanyRecordSetType
|
||||
- ./DistrictArchiveGermany
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DistrictArchiveGermanyRecordSetType
|
||||
- ./DistrictArchiveGermany
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
KreisAdministrationFonds:
|
||||
is_a: DistrictArchiveGermanyRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./DistritalArchiveRecordSetType
|
||||
- ./DistritalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./DistritalArchiveRecordSetType
|
||||
- ./DistritalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DistritoAdministrationFonds:
|
||||
is_a: DistritalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ../slots/extraction_note
|
||||
- ../slots/contact_email
|
||||
- ../slots/observed_in
|
||||
- ../slots/benefit
|
||||
- ../slots/has_or_had_benefit # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/currency
|
||||
- ../slots/maximum_amount
|
||||
- ../slots/minimum_amount
|
||||
|
|
@ -97,7 +97,7 @@ classes:
|
|||
- schema:priceSpecification
|
||||
- schema:itemOffered
|
||||
slots:
|
||||
- benefit
|
||||
- has_or_had_benefit # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- contact_email
|
||||
- currency
|
||||
- extraction_confidence
|
||||
|
|
@ -199,7 +199,7 @@ classes:
|
|||
description: Annual membership/renewal
|
||||
- value: life
|
||||
description: One-time payment for lifetime benefits
|
||||
benefit:
|
||||
has_or_had_benefit: # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
|
|
@ -328,7 +328,7 @@ classes:
|
|||
minimum_amount: 60
|
||||
currency: EUR
|
||||
payment_frequency: annually
|
||||
benefit:
|
||||
has_or_had_benefit: # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- Gratis onbeperkt toegang
|
||||
- Exclusieve vriendenevenementen
|
||||
- 10% korting in de museumwinkel
|
||||
|
|
@ -358,7 +358,7 @@ classes:
|
|||
minimum_amount: 25
|
||||
currency: GBP
|
||||
payment_frequency: one-time
|
||||
benefit:
|
||||
has_or_had_benefit: # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- Certificate of adoption
|
||||
- Bookplate with your name in the book
|
||||
- Digital image of your adopted book
|
||||
|
|
@ -389,7 +389,7 @@ classes:
|
|||
maximum_amount: 4999
|
||||
currency: GBP
|
||||
payment_frequency: annually
|
||||
benefit:
|
||||
has_or_had_benefit: # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- Behind-the-scenes tours
|
||||
- Curator-led collection visits
|
||||
- Patron-only evening events
|
||||
|
|
@ -420,7 +420,7 @@ classes:
|
|||
minimum_amount: 150
|
||||
currency: EUR
|
||||
payment_frequency: one-time
|
||||
benefit:
|
||||
has_or_had_benefit: # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- Adoption certificate
|
||||
- Digital copy of document
|
||||
- Name on website donor wall
|
||||
|
|
@ -450,7 +450,7 @@ classes:
|
|||
minimum_amount: null
|
||||
currency: EUR
|
||||
payment_frequency: one-time
|
||||
benefit:
|
||||
has_or_had_benefit: # was: benefit - migrated per Rule 53/56 (2026-01-17)
|
||||
- Persoonlijk gesprek met directie
|
||||
- Erkenning in jaarverslag (optioneel)
|
||||
- Nalatenschap volledig naar collectie
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./EconomicArchiveRecordSetType
|
||||
- ./EconomicArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./EconomicArchiveRecordSetType
|
||||
- ./EconomicArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
BusinessRecordsFonds:
|
||||
is_a: EconomicArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -28,13 +28,12 @@ imports:
|
|||
# REMOVED: ../slots/binding - Use has_or_had_type with BindingType instead (2026-01-15)
|
||||
- ../slots/has_or_had_type
|
||||
- ./BindingType
|
||||
- ../slots/catalog_description
|
||||
- ../slots/catalog_entries_count
|
||||
- ../slots/catalog_for
|
||||
- ../slots/catalog_id
|
||||
- ../slots/catalog_subtitle
|
||||
- ../slots/catalog_title
|
||||
- ../slots/catalog_type
|
||||
- ../slots/has_or_had_description # was: catalog_description - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_content # was: catalog_entries_count - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/is_or_was_associated_with # was: catalog_for - migrated per Rule 53/56 (2026-01-17)
|
||||
# catalog_id migrated to has_or_had_identifier (already imported below)
|
||||
- ../slots/has_or_had_label # was: catalog_title, catalog_subtitle - migrated per Rule 53/56 (2026-01-17)
|
||||
# catalog_type migrated to has_or_had_type (already imported above)
|
||||
- ../slots/catalog_url
|
||||
- ../slots/contributor
|
||||
- ../slots/has_or_had_custodian_type
|
||||
|
|
@ -76,8 +75,8 @@ classes:
|
|||
\ bibo:Document (bibliographic ontology)\n\n**Relationship to Other Classes**:\n\n```\nExhibition (curated display)\n\
|
||||
\ │\n │── exhibition_catalogs (documentation)\n v\nExhibitionCatalog (this class)\n │\n │── documents\
|
||||
\ → ExhibitedObject[] (catalog entries)\n │── authored_by → (scholars, curators)\n v\nPublisher/Institution\n\
|
||||
```\n\n**Example**:\n\nThe \"Vermeer\" exhibition catalog (Rijksmuseum, 2023):\n- catalog_id: https://nde.nl/ontology/hc/catalog/rijksmuseum-vermeer-2023\n\
|
||||
- catalog_title: \"Vermeer\"\n- catalog_for: Vermeer exhibition 2023\n- isbn: 978-9491714962\n- pages: 320\n"
|
||||
```\n\n**Example**:\n\nThe \"Vermeer\" exhibition catalog (Rijksmuseum, 2023):\n- has_or_had_identifier: https://nde.nl/ontology/hc/catalog/rijksmuseum-vermeer-2023\n\
|
||||
- has_or_had_label: \"Vermeer\"\n- is_or_was_associated_with: Vermeer exhibition 2023\n- isbn: 978-9491714962\n- pages: 320\n"
|
||||
exact_mappings:
|
||||
- schema:Book
|
||||
close_mappings:
|
||||
|
|
@ -93,13 +92,12 @@ classes:
|
|||
- has_or_had_author
|
||||
# REMOVED: binding - Use has_or_had_type with BindingType instead (2026-01-15)
|
||||
- has_or_had_type
|
||||
- catalog_description
|
||||
- catalog_entries_count
|
||||
- catalog_for
|
||||
- catalog_id
|
||||
- catalog_subtitle
|
||||
- catalog_title
|
||||
- catalog_type
|
||||
- has_or_had_description # was: catalog_description - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_content # was: catalog_entries_count - migrated per Rule 53/56 (2026-01-17)
|
||||
- is_or_was_associated_with # was: catalog_for - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_identifier # was: catalog_id - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_label # was: catalog_subtitle, catalog_title - migrated per Rule 53/56 (2026-01-17)
|
||||
# catalog_type migrated to has_or_had_type above
|
||||
- catalog_url
|
||||
- contributor
|
||||
- has_or_had_custodian_type
|
||||
|
|
@ -124,39 +122,84 @@ classes:
|
|||
- template_specificity
|
||||
# REMOVED 2026-01-15: wikidata_id - migrated to has_or_had_identifier (Rule 53)
|
||||
# REMOVED: worldcat_id - migrated to has_or_had_identifier with WorldCatIdentifier (2026-01-14, Rule 53)
|
||||
- has_or_had_identifier
|
||||
slot_usage:
|
||||
catalog_id:
|
||||
has_or_had_identifier: # CONSOLIDATED: catalog_id + wikidata_id + worldcat_id - migrated per Rule 53/56 (2026-01-17)
|
||||
identifier: true
|
||||
required: true
|
||||
range: uriorcurie
|
||||
multivalued: true
|
||||
inlined: true
|
||||
description: >-
|
||||
Identifiers for the exhibition catalog. Includes:
|
||||
- Primary catalog identifier (required, first value) - MIGRATED from catalog_id (2026-01-17)
|
||||
- WikiDataIdentifier: Wikidata Q-number - MIGRATED from wikidata_id (2026-01-15)
|
||||
- WorldCatIdentifier: OCLC WorldCat ID - MIGRATED from worldcat_id (2026-01-14)
|
||||
|
||||
First identifier serves as primary key. Uses structured identifier classes per Rule 53.
|
||||
any_of:
|
||||
- range: uriorcurie # Primary catalog ID
|
||||
- range: WikiDataIdentifier
|
||||
- range: WorldCatIdentifier
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/catalog/rijksmuseum-vermeer-2023
|
||||
description: Primary catalog identifier
|
||||
- value: https://nde.nl/ontology/hc/catalog/moma-matisse-cutouts-2014
|
||||
catalog_title:
|
||||
description: Primary catalog identifier
|
||||
- value:
|
||||
qid: "Q116123456"
|
||||
label: "Vermeer 2023 catalog"
|
||||
description: Wikidata identifier for catalog
|
||||
- value:
|
||||
identifier_value: "1370123456"
|
||||
identifier_source: "OCLC WorldCat"
|
||||
description: WorldCat identifier for library catalog lookup
|
||||
has_or_had_label: # was: catalog_title, catalog_subtitle - migrated per Rule 53/56 (2026-01-17)
|
||||
required: true
|
||||
range: string
|
||||
multivalued: true
|
||||
description: >-
|
||||
Title and subtitle of the catalog.
|
||||
MIGRATED from catalog_title and catalog_subtitle per Rule 53/56 (2026-01-17).
|
||||
First value is primary title, subsequent values are subtitles.
|
||||
examples:
|
||||
- value: Vermeer
|
||||
description: Primary catalog title
|
||||
- value: 'Henri Matisse: The Cut-Outs'
|
||||
catalog_subtitle:
|
||||
required: false
|
||||
range: string
|
||||
examples:
|
||||
description: Title with subtitle included
|
||||
- value: The Greatest Exhibition
|
||||
- value: A Retrospective
|
||||
catalog_for:
|
||||
description: Subtitle as separate label
|
||||
is_or_was_associated_with: # was: catalog_for - migrated per Rule 53/56 (2026-01-17)
|
||||
required: true
|
||||
range: uriorcurie
|
||||
inlined: false
|
||||
description: >-
|
||||
The exhibition this catalog documents.
|
||||
MIGRATED from catalog_for per Rule 53/56 (2026-01-17).
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/exhibition/rijksmuseum-vermeer-2023
|
||||
catalog_type:
|
||||
has_or_had_type: # CONSOLIDATED: catalog_type + binding - migrated per Rule 53/56 (2026-01-17)
|
||||
required: false
|
||||
range: string
|
||||
range: uriorcurie
|
||||
multivalued: true
|
||||
description: >-
|
||||
Type classification for the catalog. Supports multiple type facets:
|
||||
- Catalog format type: PRINT_CATALOG, DIGITAL_CATALOG, HYBRID_CATALOG
|
||||
- Binding type: BindingType class (hc:HardcoverBinding, hc:PaperbackBinding, etc.)
|
||||
|
||||
MIGRATED from catalog_type (2026-01-17) and binding (2026-01-15) per Rule 53/56.
|
||||
Uses multivalued to support both format and binding classification simultaneously.
|
||||
any_of:
|
||||
- range: string # For catalog format: PRINT_CATALOG, DIGITAL_CATALOG
|
||||
- range: BindingType # For binding: hc:HardcoverBinding, etc.
|
||||
examples:
|
||||
- value: PRINT_CATALOG
|
||||
description: Print catalog format type
|
||||
- value: DIGITAL_CATALOG
|
||||
description: Digital catalog format type
|
||||
- value: hc:HardcoverBinding
|
||||
description: Hardcover binding type (from BindingType class)
|
||||
- value: hc:PaperbackBinding
|
||||
description: Paperback binding type
|
||||
has_or_had_author:
|
||||
description: >-
|
||||
Authors of the exhibition catalog.
|
||||
|
|
@ -246,24 +289,8 @@ classes:
|
|||
examples:
|
||||
- value: 280 color illustrations
|
||||
- value: 150 color plates, 50 b/w figures
|
||||
# DEPRECATED: binding slot - Use has_or_had_type with BindingType instead (2026-01-15)
|
||||
# binding:
|
||||
# required: false
|
||||
# range: string
|
||||
# deprecated: "Use has_or_had_type with BindingType instead"
|
||||
has_or_had_type:
|
||||
required: false
|
||||
range: BindingType
|
||||
description: >-
|
||||
The binding type of the catalog (hardcover, paperback, etc.).
|
||||
MIGRATED from binding slot (2026-01-15) per Rule 53.
|
||||
|
||||
Uses BindingType class hierarchy for structured binding classification.
|
||||
examples:
|
||||
- value: hc:HardcoverBinding
|
||||
description: Hardcover binding type
|
||||
- value: hc:PaperbackBinding
|
||||
description: Paperback binding type
|
||||
# CONSOLIDATED 2026-01-17: binding slot merged into has_or_had_type above (see line ~160)
|
||||
# Original binding migration was 2026-01-15 per Rule 53
|
||||
language:
|
||||
required: false
|
||||
range: string
|
||||
|
|
@ -293,9 +320,12 @@ classes:
|
|||
examples:
|
||||
- value: €59.95
|
||||
- value: $75.00
|
||||
catalog_description:
|
||||
has_or_had_description: # was: catalog_description - migrated per Rule 53/56 (2026-01-17)
|
||||
required: false
|
||||
range: string
|
||||
description: >-
|
||||
Detailed description of the exhibition catalog.
|
||||
MIGRATED from catalog_description per Rule 53/56 (2026-01-17).
|
||||
examples:
|
||||
- value: "The official catalog of the groundbreaking Vermeer exhibition at the \nRijksmuseum, featuring 28 of the\
|
||||
\ Dutch master's 37 known paintings.\nIncludes scholarly essays on Vermeer's technique, pigments, and\nsubjects,\
|
||||
|
|
@ -348,44 +378,19 @@ classes:
|
|||
- entry_label: "5. Appendices"
|
||||
entry_level: 1
|
||||
description: Structured table of contents for Vermeer catalog
|
||||
catalog_entries_count:
|
||||
has_or_had_content: # was: catalog_entries_count - migrated per Rule 53/56 (2026-01-17)
|
||||
required: false
|
||||
range: integer
|
||||
description: >-
|
||||
Number of catalog entries (objects documented).
|
||||
MIGRATED from catalog_entries_count per Rule 53/56 (2026-01-17).
|
||||
Note: Full revision pattern would use has_or_had_quantity with Quantity class,
|
||||
but integer range is kept for backwards compatibility.
|
||||
examples:
|
||||
- value: 28
|
||||
description: 28 Vermeer paintings in exhibition
|
||||
# MIGRATED 2026-01-15: wikidata_id → has_or_had_identifier + WikiDataIdentifier (Rule 53)
|
||||
# DEPRECATED: worldcat_id - migrated to has_or_had_identifier with WorldCatIdentifier (2026-01-14, Rule 53)
|
||||
# worldcat_id:
|
||||
# required: false
|
||||
# range: string
|
||||
# examples:
|
||||
# - value: '1370123456'
|
||||
has_or_had_identifier:
|
||||
description: |
|
||||
External identifiers for this catalog.
|
||||
|
||||
Accepts multiple identifier types:
|
||||
- WikiDataIdentifier: Wikidata Q-number (MIGRATED 2026-01-15 from wikidata_id)
|
||||
- WorldCatIdentifier: OCLC WorldCat ID (MIGRATED 2026-01-14 from worldcat_id)
|
||||
|
||||
Uses structured identifier classes with provenance per Rule 53.
|
||||
required: false
|
||||
range: uriorcurie
|
||||
multivalued: true
|
||||
inlined: true
|
||||
any_of:
|
||||
- range: WikiDataIdentifier
|
||||
- range: WorldCatIdentifier
|
||||
examples:
|
||||
- value:
|
||||
qid: "Q116123456"
|
||||
label: "Vermeer 2023 catalog"
|
||||
description: Wikidata identifier for catalog
|
||||
- value:
|
||||
identifier_value: "1370123456"
|
||||
identifier_source: "OCLC WorldCat"
|
||||
description: WorldCat identifier for library catalog lookup
|
||||
# CONSOLIDATED 2026-01-17: wikidata_id and worldcat_id merged into has_or_had_identifier above (see line ~126)
|
||||
# Original migrations: wikidata_id (2026-01-15), worldcat_id (2026-01-14) per Rule 53
|
||||
library_catalog_url:
|
||||
required: false
|
||||
range: uri
|
||||
|
|
@ -398,7 +403,7 @@ classes:
|
|||
"hc:HolySacredSiteType", "hc:BioCustodianType"]'
|
||||
comments:
|
||||
- ExhibitionCatalog models scholarly publications documenting exhibitions
|
||||
- Links to Exhibition via catalog_for relationship
|
||||
- Links to Exhibition via is_or_was_associated_with relationship (migrated from catalog_for)
|
||||
- Supports both print and digital catalog formats
|
||||
- Uses schema:Book as primary mapping for web discoverability
|
||||
- BIBFRAME and BIBO mappings enable library integration
|
||||
|
|
@ -408,10 +413,12 @@ classes:
|
|||
- http://id.loc.gov/ontologies/bibframe/Work
|
||||
examples:
|
||||
- value:
|
||||
catalog_id: https://nde.nl/ontology/hc/catalog/rijksmuseum-vermeer-2023
|
||||
catalog_title: Vermeer
|
||||
catalog_for: https://nde.nl/ontology/hc/exhibition/rijksmuseum-vermeer-2023
|
||||
catalog_type: PRINT_CATALOG
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/catalog/rijksmuseum-vermeer-2023 # was: catalog_id
|
||||
has_or_had_label: Vermeer # was: catalog_title
|
||||
is_or_was_associated_with: https://nde.nl/ontology/hc/exhibition/rijksmuseum-vermeer-2023 # was: catalog_for
|
||||
has_or_had_type: # CONSOLIDATED: catalog_type + binding
|
||||
- PRINT_CATALOG
|
||||
- hc:HardcoverBinding
|
||||
has_or_had_author:
|
||||
- author_name: Pieter Roelofs
|
||||
author_role: AUTHOR
|
||||
|
|
@ -427,25 +434,26 @@ classes:
|
|||
isbn_13: '9789491714962'
|
||||
pages: 320
|
||||
illustrations: 280 color illustrations
|
||||
has_or_had_type: hc:HardcoverBinding # Migrated from binding: hardcover
|
||||
language:
|
||||
- en
|
||||
catalog_url: https://www.rijksmuseum.nl/nl/webshop/catalogus-vermeer
|
||||
price: €59.95
|
||||
catalog_description: "The official catalog of the groundbreaking Vermeer exhibition at the \nRijksmuseum (February\
|
||||
has_or_had_description: "The official catalog of the groundbreaking Vermeer exhibition at the \nRijksmuseum (February\
|
||||
\ 10 - June 4, 2023), featuring 28 of the Dutch \nmaster's 37 known paintings. Includes scholarly essays on Vermeer's\
|
||||
\ \ntechnique, pigments, and subjects.\n"
|
||||
\ \ntechnique, pigments, and subjects.\n" # was: catalog_description
|
||||
has_or_had_essay:
|
||||
- Vermeer's World
|
||||
- The Science of Vermeer's Pigments
|
||||
- 'Johannes Vermeer: Life and Work'
|
||||
catalog_entries_count: 28
|
||||
has_or_had_content: 28 # was: catalog_entries_count
|
||||
description: Vermeer 2023 exhibition catalog
|
||||
- value:
|
||||
catalog_id: https://nde.nl/ontology/hc/catalog/moma-matisse-cutouts-2014
|
||||
catalog_title: 'Henri Matisse: The Cut-Outs'
|
||||
catalog_for: https://nde.nl/ontology/hc/exhibition/moma-matisse-cutouts-2014
|
||||
catalog_type: PRINT_CATALOG
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/catalog/moma-matisse-cutouts-2014 # was: catalog_id
|
||||
has_or_had_label: 'Henri Matisse: The Cut-Outs' # was: catalog_title
|
||||
is_or_was_associated_with: https://nde.nl/ontology/hc/exhibition/moma-matisse-cutouts-2014 # was: catalog_for
|
||||
has_or_had_type: # CONSOLIDATED: catalog_type + binding
|
||||
- PRINT_CATALOG
|
||||
- hc:HardcoverBinding
|
||||
editor:
|
||||
- Karl Buchberg
|
||||
- Nicholas Cullinan
|
||||
|
|
@ -456,16 +464,15 @@ classes:
|
|||
isbn_13: '9780870709159'
|
||||
pages: 298
|
||||
illustrations: 230 illustrations
|
||||
has_or_had_type: hc:HardcoverBinding # Migrated from binding: hardcover
|
||||
language:
|
||||
- en
|
||||
price: $60.00
|
||||
description: MoMA Matisse Cut-Outs exhibition catalog
|
||||
- value:
|
||||
catalog_id: https://nde.nl/ontology/hc/catalog/british-museum-arctic-2020
|
||||
catalog_title: 'Arctic: culture and climate'
|
||||
catalog_for: https://nde.nl/ontology/hc/exhibition/british-museum-arctic-2020
|
||||
catalog_type: DIGITAL_CATALOG
|
||||
has_or_had_identifier: https://nde.nl/ontology/hc/catalog/british-museum-arctic-2020 # was: catalog_id
|
||||
has_or_had_label: 'Arctic: culture and climate' # was: catalog_title
|
||||
is_or_was_associated_with: https://nde.nl/ontology/hc/exhibition/british-museum-arctic-2020 # was: catalog_for
|
||||
has_or_had_type: DIGITAL_CATALOG # was: catalog_type
|
||||
publisher: The British Museum Press
|
||||
publication_date: '2020-10-22'
|
||||
catalog_url: https://www.britishmuseum.org/exhibitions/arctic-culture-and-climate
|
||||
|
|
|
|||
|
|
@ -11,44 +11,44 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./FilmArchiveRecordSetType
|
||||
- ./FilmArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./FilmArchiveRecordSetType
|
||||
- ./FilmArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/legal_note
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
FeatureFilmCollection:
|
||||
is_a: FilmArchiveRecordSetType
|
||||
|
|
@ -103,6 +103,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- preservation_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -178,6 +185,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:ResearchOrganizationType"]'
|
||||
|
|
@ -252,6 +265,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -321,6 +340,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- legal_note
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -400,6 +426,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:MuseumType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./FoundationArchiveRecordSetType
|
||||
- ./FoundationArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./FoundationArchiveRecordSetType
|
||||
- ./FoundationArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
FoundationAdministrationFonds:
|
||||
is_a: FoundationArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./FreeArchiveRecordSetType
|
||||
- ./FreeArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./FreeArchiveRecordSetType
|
||||
- ./FreeArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
OpenAccessCollection:
|
||||
is_a: FreeArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./FrenchPrivateArchivesRecordSetType
|
||||
- ./FrenchPrivateArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./FrenchPrivateArchivesRecordSetType
|
||||
- ./FrenchPrivateArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
FrenchPrivateFonds:
|
||||
is_a: FrenchPrivateArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@ imports:
|
|||
- ../slots/extraction_note
|
||||
- ../slots/observed_in
|
||||
# REMOVED 2026-01-15: ../slots/applies_to_call - migrated to applies_or_applied_to_call
|
||||
- ../slots/applies_or_applied_to_call
|
||||
# UPDATED 2026-01-17: applies_or_applied_to_call → applies_or_applied_to per Rule 53/56 (SRP)
|
||||
- ../slots/applies_or_applied_to
|
||||
- ../slots/is_mandatory
|
||||
- ../slots/requirement_id
|
||||
- ../slots/requirement_text
|
||||
|
|
@ -98,7 +99,8 @@ classes:
|
|||
- prov:wasDerivedFrom
|
||||
slots:
|
||||
# REMOVED 2026-01-15: applies_to_call - migrated to applies_or_applied_to_call
|
||||
- applies_or_applied_to_call
|
||||
# UPDATED 2026-01-17: applies_or_applied_to_call → applies_or_applied_to per Rule 53/56 (SRP)
|
||||
- applies_or_applied_to
|
||||
- extraction_confidence
|
||||
- extraction_note
|
||||
- is_mandatory
|
||||
|
|
@ -242,7 +244,7 @@ classes:
|
|||
requirement_value: '3'
|
||||
requirement_unit: partners
|
||||
is_mandatory: true
|
||||
applies_or_applied_to_call: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
applies_or_applied_to: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
observed_in: https://nde.nl/ontology/hc/observation/web/2025-11-29/eu-horizon-cl2-heritage
|
||||
source_section: Section 2 - Eligibility Conditions
|
||||
extraction_confidence: 0.98
|
||||
|
|
@ -256,7 +258,7 @@ classes:
|
|||
requirement_value: '30'
|
||||
requirement_unit: percent
|
||||
is_mandatory: true
|
||||
applies_or_applied_to_call: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
applies_or_applied_to: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
observed_in: https://nde.nl/ontology/hc/observation/web/2025-11-29/eu-horizon-cl2-heritage
|
||||
source_section: Section 3 - Financial Conditions
|
||||
extraction_confidence: 0.95
|
||||
|
|
@ -270,7 +272,7 @@ classes:
|
|||
requirement_value: immediate
|
||||
requirement_unit: null
|
||||
is_mandatory: true
|
||||
applies_or_applied_to_call: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
applies_or_applied_to: https://nde.nl/ontology/hc/call/ec/cl2-2025-heritage-01
|
||||
observed_in: https://nde.nl/ontology/hc/observation/web/2025-11-29/eu-horizon-cl2-heritage
|
||||
source_section: Section 4.2 - Open Science
|
||||
extraction_confidence: 0.99
|
||||
|
|
@ -284,7 +286,7 @@ classes:
|
|||
requirement_value: UK
|
||||
requirement_unit: country
|
||||
is_mandatory: true
|
||||
applies_or_applied_to_call: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025-q4
|
||||
applies_or_applied_to: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025-q4
|
||||
observed_in: https://nde.nl/ontology/hc/observation/web/2025-11-28/nlhf-medium-grants
|
||||
source_section: Eligibility
|
||||
extraction_confidence: 0.99
|
||||
|
|
@ -298,7 +300,7 @@ classes:
|
|||
requirement_value: non-profit
|
||||
requirement_unit: organization-type
|
||||
is_mandatory: true
|
||||
applies_or_applied_to_call: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025-q4
|
||||
applies_or_applied_to: https://nde.nl/ontology/hc/call/nlhf/medium-grants-2025-q4
|
||||
observed_in: https://nde.nl/ontology/hc/observation/web/2025-11-28/nlhf-medium-grants
|
||||
source_section: Who can apply
|
||||
extraction_confidence: 0.95
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ imports:
|
|||
- ../slots/longitude
|
||||
- ../slots/has_altitude
|
||||
- ../slots/has_accuracy_in_meters
|
||||
- ../slots/bounding_box
|
||||
- ../slots/has_or_had_geographic_extent # was: bounding_box - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/coordinate_reference_system
|
||||
- ../slots/feature_class
|
||||
|
|
@ -31,48 +31,9 @@ imports:
|
|||
- ../slots/template_specificity
|
||||
- ../slots/temporal_extent # was: valid_from_geo + valid_to_geo - migrated per Rule 53
|
||||
- ./TimeSpan
|
||||
# REMOVED 2026-01-14: valid_from_geo + valid_to_geo - migrated to temporal_extent (Rule 53)
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../enums/GeometryTypeEnum
|
||||
- ../slots/bounding_box
|
||||
- ../slots/coordinate_reference_system
|
||||
- ../slots/feature_class
|
||||
- ../slots/feature_code
|
||||
- ../slots/geometry_type
|
||||
- ../slots/geometry_wkt
|
||||
- ../slots/geonames_id
|
||||
- ../slots/geospatial_id
|
||||
- ../slots/geospatial_source
|
||||
- ../slots/has_accuracy_in_meters
|
||||
- ../slots/has_altitude
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/latitude
|
||||
- ../slots/longitude
|
||||
- ../slots/osm_id
|
||||
- ../slots/spatial_resolution
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/temporal_extent
|
||||
- ../slots/bounding_box
|
||||
- ../slots/coordinate_reference_system
|
||||
- ../slots/feature_class
|
||||
- ../slots/feature_code
|
||||
- ../slots/geometry_type
|
||||
- ../slots/geometry_wkt
|
||||
- ../slots/geonames_id
|
||||
- ../slots/geospatial_id
|
||||
- ../slots/geospatial_source
|
||||
- ../slots/has_accuracy_in_meters
|
||||
- ../slots/has_altitude
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/latitude
|
||||
- ../slots/longitude
|
||||
- ../slots/osm_id
|
||||
- ../slots/spatial_resolution
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/temporal_extent
|
||||
types:
|
||||
WktLiteral:
|
||||
uri: geosparql:wktLiteral
|
||||
|
|
@ -197,7 +158,7 @@ classes:
|
|||
slots:
|
||||
- has_accuracy_in_meters
|
||||
- has_altitude
|
||||
- bounding_box
|
||||
- has_or_had_geographic_extent # was: bounding_box - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_identifier
|
||||
- coordinate_reference_system
|
||||
- feature_class
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./GovernmentArchiveRecordSetType
|
||||
- ./GovernmentArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./GovernmentArchiveRecordSetType
|
||||
- ./GovernmentArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
AgencyAdministrativeFonds:
|
||||
is_a: GovernmentArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./HistoricalArchiveRecordSetType
|
||||
- ./HistoricalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./HistoricalArchiveRecordSetType
|
||||
- ./HistoricalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
HistoricalDocumentFonds:
|
||||
is_a: HistoricalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,44 +11,44 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./HospitalArchiveRecordSetType
|
||||
- ./HospitalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./HospitalArchiveRecordSetType
|
||||
- ./HospitalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
HospitalAdministrationFonds:
|
||||
is_a: HospitalArchiveRecordSetType
|
||||
|
|
@ -179,6 +179,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -338,6 +344,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -506,6 +519,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:ResearchOrganizationType"]'
|
||||
|
|
@ -655,6 +674,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:EducationProviderType"]'
|
||||
|
|
@ -737,6 +763,14 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- preservation_note
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:MuseumType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./HouseArchiveRecordSetType
|
||||
- ./HouseArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./HouseArchiveRecordSetType
|
||||
- ./HouseArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
HouseRecordsFonds:
|
||||
is_a: HouseArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./IconographicArchivesRecordSetType
|
||||
- ./IconographicArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./IconographicArchivesRecordSetType
|
||||
- ./IconographicArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
VisualImageCollection:
|
||||
is_a: IconographicArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -116,6 +116,26 @@ classes:
|
|||
- "Replaces string-based table_of_content per Rule 53/56 (2026-01-16)"
|
||||
- "Enables hierarchical and typed index structures"
|
||||
|
||||
# IndexEntry class - a single entry in an index
|
||||
IndexEntry:
|
||||
class_uri: hc:IndexEntry
|
||||
description: |
|
||||
A single entry in an index.
|
||||
attributes:
|
||||
entry_label:
|
||||
range: string
|
||||
required: true
|
||||
description: The text label for this entry (chapter title, subject term, etc.)
|
||||
entry_page:
|
||||
range: string
|
||||
description: Page number or range (e.g., "42", "89-112", "42, 78, 156")
|
||||
entry_level:
|
||||
range: integer
|
||||
description: Hierarchy level (1=top level, 2=subsection, etc.)
|
||||
entry_uri:
|
||||
range: uri
|
||||
description: URI reference if this entry links to a digital resource
|
||||
|
||||
# Inline slot definitions for Index-specific slots
|
||||
slots:
|
||||
has_or_had_index_type:
|
||||
|
|
@ -135,23 +155,3 @@ slots:
|
|||
range: IndexEntry
|
||||
multivalued: true
|
||||
inlined_as_list: true
|
||||
|
||||
# IndexEntry as inline class
|
||||
IndexEntry:
|
||||
class_uri: hc:IndexEntry
|
||||
description: |
|
||||
A single entry in an index.
|
||||
attributes:
|
||||
entry_label:
|
||||
range: string
|
||||
required: true
|
||||
description: The text label for this entry (chapter title, subject term, etc.)
|
||||
entry_page:
|
||||
range: string
|
||||
description: Page number or range (e.g., "42", "89-112", "42, 78, 156")
|
||||
entry_level:
|
||||
range: integer
|
||||
description: Hierarchy level (1=top level, 2=subsection, etc.)
|
||||
entry_uri:
|
||||
range: uri
|
||||
description: URI reference if this entry links to a digital resource
|
||||
|
|
|
|||
|
|
@ -30,7 +30,9 @@ imports:
|
|||
- ../slots/includes_or_included
|
||||
- ./Bookplate
|
||||
- ./BindingType
|
||||
- ../slots/call_number
|
||||
# REMOVED 2026-01-17: call_number - migrated to has_or_had_identifier per Rule 53
|
||||
- ../slots/has_or_had_identifier # includes call_number migration (2026-01-17)
|
||||
- ./Identifier # for has_or_had_identifier range
|
||||
- ../slots/carrier_type
|
||||
- ../slots/carries_information
|
||||
- ../slots/content_language
|
||||
|
|
@ -118,7 +120,8 @@ classes:
|
|||
- has_or_had_type
|
||||
# bookplate REMOVED - migrated to includes_or_included (Rule 53)
|
||||
- includes_or_included
|
||||
- call_number
|
||||
# REMOVED 2026-01-17: call_number - migrated to has_or_had_identifier (Rule 53)
|
||||
- has_or_had_identifier
|
||||
- carrier_type
|
||||
- carries_information
|
||||
- content_language
|
||||
|
|
@ -196,17 +199,6 @@ classes:
|
|||
- value: PT45M30S
|
||||
description: 45 minutes 30 seconds
|
||||
- value: 01:32:15
|
||||
binding_type:
|
||||
required: false
|
||||
range: string
|
||||
description: |
|
||||
DEPRECATED: Use has_or_had_type with BindingType class instead.
|
||||
MIGRATION: 2026-01-13 - Replaced by has_or_had_type slot.
|
||||
deprecated: "Use has_or_had_type with BindingType class instead"
|
||||
examples:
|
||||
- value: Full leather
|
||||
- value: Half calf over marbled boards
|
||||
- value: Limp vellum
|
||||
has_or_had_type:
|
||||
required: false
|
||||
range: BindingType
|
||||
|
|
@ -222,16 +214,6 @@ classes:
|
|||
description: Traditional fine leather binding
|
||||
- value: LimpVellumBinding
|
||||
description: Flexible vellum cover
|
||||
binding_description:
|
||||
required: false
|
||||
range: string
|
||||
description: >-
|
||||
DEPRECATED: Use has_or_had_description instead for binding descriptions.
|
||||
MIGRATION: 2026-01-15 - Replaced by has_or_had_description slot per Rule 53.
|
||||
deprecated: "Use has_or_had_description instead"
|
||||
examples:
|
||||
- value: "Contemporary blind-stamped pigskin over wooden boards, \nwith brass clasps and corner pieces. Spine with\
|
||||
\ five raised bands.\n"
|
||||
has_or_had_description:
|
||||
required: false
|
||||
range: string
|
||||
|
|
@ -431,13 +413,40 @@ classes:
|
|||
range: string
|
||||
examples:
|
||||
- value: '12345678'
|
||||
call_number:
|
||||
# REMOVED 2026-01-17: call_number - migrated to has_or_had_identifier (Rule 53)
|
||||
# Old call_number slot_usage preserved below in has_or_had_identifier
|
||||
has_or_had_identifier:
|
||||
required: false
|
||||
range: string
|
||||
range: Identifier
|
||||
multivalued: true
|
||||
inlined: true
|
||||
description: |
|
||||
Identifiers for this information carrier.
|
||||
MIGRATED from call_number (2026-01-17) and wikidata_id (2026-01-15) per Rule 53.
|
||||
|
||||
Includes:
|
||||
- Library call numbers (bf:shelfMark) - e.g., BS75.A1 1455, Inc. 1
|
||||
- Wikidata IDs (Q-numbers) - e.g., Q178401
|
||||
- Local collection identifiers
|
||||
- Other external identifiers
|
||||
|
||||
Use identifier_scheme to distinguish types:
|
||||
- LIBRARY_OF_CONGRESS, DEWEY_DECIMAL for classification call numbers
|
||||
- LOCAL_COLLECTION for institutional identifiers
|
||||
- WIKIDATA for Q-numbers
|
||||
examples:
|
||||
- value: BS75.A1 1455
|
||||
- value: Inc. 1
|
||||
description: Incunabula collection number
|
||||
- value:
|
||||
identifier_value: BS75.A1 1455
|
||||
identifier_scheme: LIBRARY_OF_CONGRESS
|
||||
description: Library of Congress call number
|
||||
- value:
|
||||
identifier_value: Inc. 1
|
||||
identifier_scheme: LOCAL_COLLECTION
|
||||
description: Incunabula collection number (was call_number)
|
||||
- value:
|
||||
identifier_value: Q178401
|
||||
identifier_scheme: WIKIDATA
|
||||
description: Wikidata identifier for Gutenberg Bible
|
||||
shelf_mark:
|
||||
required: false
|
||||
range: string
|
||||
|
|
@ -551,15 +560,19 @@ classes:
|
|||
carries_information: Bible. Latin. Vulgate
|
||||
title_proper: Biblia Latina
|
||||
uniform_title: Bible. Latin. Vulgate. 1455
|
||||
call_number: Inc. 1
|
||||
# MIGRATED 2026-01-17: call_number → has_or_had_identifier (Rule 53)
|
||||
# Merged with existing wikidata_id migration (2026-01-15)
|
||||
has_or_had_identifier:
|
||||
- identifier_value: "Inc. 1"
|
||||
identifier_scheme: LOCAL_COLLECTION
|
||||
description: "Incunabula collection number (was call_number)"
|
||||
- identifier_value: "Q178401"
|
||||
identifier_scheme: WIKIDATA
|
||||
label: "Gutenberg Bible (KB copy)"
|
||||
copy_note:
|
||||
- Complete copy on paper (2 volumes)
|
||||
- Rubricated in red and blue
|
||||
current_keeper: https://nde.nl/ontology/hc/custodian/nl/koninklijke-bibliotheek
|
||||
# MIGRATED 2026-01-15: wikidata_id → has_or_had_identifier (Rule 53)
|
||||
has_or_had_identifier:
|
||||
- qid: "Q178401"
|
||||
label: "Gutenberg Bible (KB copy)"
|
||||
description: Gutenberg Bible at Koninklijke Bibliotheek
|
||||
- value:
|
||||
object_id: https://nde.nl/ontology/hc/object/bl-codex-sinaiticus
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./InstitutionalArchiveRecordSetType
|
||||
- ./InstitutionalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./InstitutionalArchiveRecordSetType
|
||||
- ./InstitutionalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
InstitutionAdministrationFonds:
|
||||
is_a: InstitutionalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./JointArchivesRecordSetType
|
||||
- ./JointArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./JointArchivesRecordSetType
|
||||
- ./JointArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
SharedRecordsFonds:
|
||||
is_a: JointArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./LGBTArchiveRecordSetType
|
||||
- ./LGBTArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./LGBTArchiveRecordSetType
|
||||
- ./LGBTArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
LGBTOrganizationFonds:
|
||||
is_a: LGBTArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -24,7 +24,8 @@ imports:
|
|||
- ../slots/prompt_token
|
||||
- ../slots/completion_token
|
||||
- ../slots/consumes_or_consumed # was: total_token - migrated per Rule 53 (2026-01-15)
|
||||
- ../slots/cached_token
|
||||
- ../slots/has_or_had_token # was: cached_token - migrated per Rule 53/56 (2026-01-17)
|
||||
- ./Token # for has_or_had_token range
|
||||
- ../slots/finish_reason
|
||||
- ../slots/latency_ms
|
||||
- ../slots/has_or_had_mode # was: thinking_mode - migrated per Rule 53/56 (2026-01-16)
|
||||
|
|
@ -65,7 +66,7 @@ classes:
|
|||
- schema:Action
|
||||
- schema:CreativeWork
|
||||
slots:
|
||||
- cached_token
|
||||
- has_or_had_token # was: cached_token - migrated per Rule 53/56 (2026-01-17)
|
||||
- clear_thinking
|
||||
- completion_token
|
||||
- content
|
||||
|
|
@ -142,13 +143,31 @@ classes:
|
|||
examples:
|
||||
- value: 600
|
||||
description: 600 total tokens (150 prompt + 450 completion)
|
||||
cached_token:
|
||||
range: integer
|
||||
minimum_value: 0
|
||||
has_or_had_token: # was: cached_token - migrated per Rule 53/56 (2026-01-17)
|
||||
description: >-
|
||||
Token data for this LLM response (typically cached prompt tokens).
|
||||
From API response: usage.prompt_tokens_details.cached_tokens.
|
||||
Cached tokens typically have reduced cost and latency.
|
||||
MIGRATED to use Token class with TokenType taxonomy per Rule 53/56.
|
||||
range: Token
|
||||
inlined: true
|
||||
required: false
|
||||
examples:
|
||||
- value: 50
|
||||
description: 50 tokens served from provider's prompt cache
|
||||
- value:
|
||||
has_or_had_type:
|
||||
has_or_had_identifier: hc:TokenType/CACHED
|
||||
has_or_had_label: Cached Token
|
||||
has_or_had_quantity:
|
||||
quantity_value: 50
|
||||
has_or_had_description: Tokens from provider KV cache
|
||||
description: 50 cached tokens (structured Token class)
|
||||
- value:
|
||||
has_or_had_type:
|
||||
has_or_had_identifier: hc:TokenType/CACHED
|
||||
has_or_had_label: Cached Token
|
||||
has_or_had_quantity:
|
||||
quantity_value: 0
|
||||
description: No cached tokens (cache miss)
|
||||
finish_reason:
|
||||
range: FinishReasonEnum
|
||||
required: false
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/broader_type
|
||||
- ../slots/has_or_had_hypernym # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
- ../slots/has_or_had_identifier # was: wikidata_entity - migrated per Rule 53 (2026-01-16)
|
||||
- ./WikiDataIdentifier
|
||||
classes:
|
||||
|
|
@ -133,9 +133,11 @@ classes:
|
|||
pattern: ^Q[0-9]+$
|
||||
required: true
|
||||
description: Wikidata identifier (Q-number) for this Library type concept
|
||||
broader_type:
|
||||
has_or_had_hypernym: # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
description: |
|
||||
MIGRATED from broader_type (Rule 53).
|
||||
For library type subtypes, links to parent type in hierarchy.
|
||||
range: LibraryType
|
||||
required: false
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:LibraryType"]'
|
||||
exact_mappings:
|
||||
|
|
@ -164,7 +166,7 @@ classes:
|
|||
- nationale bibliotheek@nl
|
||||
- Nationalbibliothek@de
|
||||
has_or_had_description: library specifically established by the government of a country # was: type_description - migrated per Rule 53/56 (2026-01-16)
|
||||
broader_type: https://nde.nl/ontology/hc/type/library/Q7075
|
||||
has_or_had_hypernym: https://nde.nl/ontology/hc/type/library/Q7075 # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
lending_policy: reference-only
|
||||
catalog_system: ALMA
|
||||
special_collection:
|
||||
|
|
@ -184,7 +186,7 @@ classes:
|
|||
- WSF Library@en
|
||||
- WSF-bibliotheek@nl
|
||||
has_or_had_description: public library in the Netherlands with a secondary research function (Wetenschappelijke en Speciale Functies) # was: type_description - migrated per Rule 53/56 (2026-01-16)
|
||||
broader_type: https://nde.nl/ontology/hc/type/library/Q7075
|
||||
has_or_had_hypernym: https://nde.nl/ontology/hc/type/library/Q7075 # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
lending_policy: open
|
||||
catalog_system: OCLC
|
||||
special_collection:
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./LightArchivesRecordSetType
|
||||
- ./LightArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./LightArchivesRecordSetType
|
||||
- ./LightArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
MinimalProcessingCollection:
|
||||
is_a: LightArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./LiteraryArchiveRecordSetType
|
||||
- ./LiteraryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./LiteraryArchiveRecordSetType
|
||||
- ./LiteraryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
AuthorPapersCollection:
|
||||
is_a: LiteraryArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ imports:
|
|||
- ../slots/has_approval_date
|
||||
- ../slots/has_actual_return_date
|
||||
- ../slots/has_agreement_signed_date
|
||||
- ../slots/borrower
|
||||
- ../slots/borrower_contact
|
||||
- ../slots/custody_received_by # was: borrower - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_contact_point # was: borrower_contact - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/condition_on_return
|
||||
- ../slots/courier_detail
|
||||
- ../slots/courier_required
|
||||
|
|
@ -52,78 +52,6 @@ imports:
|
|||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/borrower
|
||||
- ../slots/borrower_contact
|
||||
- ../slots/condition_on_return
|
||||
- ../slots/courier_detail
|
||||
- ../slots/courier_required
|
||||
- ../slots/display_location
|
||||
- ../slots/exhibition_ref
|
||||
- ../slots/extension_count
|
||||
- ../slots/has_actual_return_date
|
||||
- ../slots/has_agreement_signed_date
|
||||
- ../slots/has_approval_date
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/has_or_had_loaned_object
|
||||
- ../slots/insurance_currency
|
||||
- ../slots/insurance_provider
|
||||
- ../slots/insurance_value
|
||||
- ../slots/lender
|
||||
- ../slots/lender_contact
|
||||
- ../slots/loan_agreement_url
|
||||
- ../slots/loan_end_date
|
||||
- ../slots/loan_id
|
||||
- ../slots/loan_note
|
||||
- ../slots/loan_number
|
||||
- ../slots/loan_purpose
|
||||
- ../slots/loan_start_date
|
||||
- ../slots/loan_status
|
||||
- ../slots/loan_timespan
|
||||
- ../slots/loan_type
|
||||
- ../slots/original_end_date
|
||||
- ../slots/outbound_condition_report_url
|
||||
- ../slots/request_date
|
||||
- ../slots/return_condition_report_url
|
||||
- ../slots/shipping_method
|
||||
- ../slots/special_requirement
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/borrower
|
||||
- ../slots/borrower_contact
|
||||
- ../slots/condition_on_return
|
||||
- ../slots/courier_detail
|
||||
- ../slots/courier_required
|
||||
- ../slots/display_location
|
||||
- ../slots/exhibition_ref
|
||||
- ../slots/extension_count
|
||||
- ../slots/has_actual_return_date
|
||||
- ../slots/has_agreement_signed_date
|
||||
- ../slots/has_approval_date
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/has_or_had_loaned_object
|
||||
- ../slots/insurance_currency
|
||||
- ../slots/insurance_provider
|
||||
- ../slots/insurance_value
|
||||
- ../slots/lender
|
||||
- ../slots/lender_contact
|
||||
- ../slots/loan_agreement_url
|
||||
- ../slots/loan_end_date
|
||||
- ../slots/loan_id
|
||||
- ../slots/loan_note
|
||||
- ../slots/loan_number
|
||||
- ../slots/loan_purpose
|
||||
- ../slots/loan_start_date
|
||||
- ../slots/loan_status
|
||||
- ../slots/loan_timespan
|
||||
- ../slots/loan_type
|
||||
- ../slots/original_end_date
|
||||
- ../slots/outbound_condition_report_url
|
||||
- ../slots/request_date
|
||||
- ../slots/return_condition_report_url
|
||||
- ../slots/shipping_method
|
||||
- ../slots/special_requirement
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Loan:
|
||||
|
|
@ -143,7 +71,7 @@ classes:
|
|||
\ │\n │── loaned_objects → ExhibitedObject[]\n │── borrower → Custodian\n │── exhibition_ref → Exhibition\
|
||||
\ (optional)\n v\nCustodian (borrower)\n```\n\n**Example**:\n\nMauritshuis loans \"Girl with a Pearl Earring\" to\
|
||||
\ Rijksmuseum for Vermeer 2023:\n- loan_id: https://nde.nl/ontology/hc/loan/mauritshuis-rijksmuseum-vermeer-2023-001\n\
|
||||
- loaned_objects: [mauritshuis-girl-pearl-earring]\n- lender: Mauritshuis\n- borrower: Rijksmuseum\n- loan_status: CLOSED\n\
|
||||
- loaned_objects: [mauritshuis-girl-pearl-earring]\n- lender: Mauritshuis\n- custody_received_by: Rijksmuseum\n- loan_status: CLOSED\n\
|
||||
- loan_start_date: 2023-02-10\n- loan_end_date: 2023-06-04\n- exhibition_ref: Vermeer 2023\n"
|
||||
exact_mappings:
|
||||
- crm:E10_Transfer_of_Custody
|
||||
|
|
@ -158,8 +86,8 @@ classes:
|
|||
- has_actual_return_date
|
||||
- has_agreement_signed_date
|
||||
- has_approval_date
|
||||
- borrower
|
||||
- borrower_contact
|
||||
- custody_received_by # was: borrower - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_contact_point # was: borrower_contact - migrated per Rule 53/56 (2026-01-17)
|
||||
- condition_on_return
|
||||
- courier_detail
|
||||
- courier_required
|
||||
|
|
@ -226,13 +154,18 @@ classes:
|
|||
range: string
|
||||
examples:
|
||||
- value: Dr. Maria van der Berg, Registrar
|
||||
borrower:
|
||||
custody_received_by: # was: borrower - migrated per Rule 53/56 (2026-01-17)
|
||||
description: >-
|
||||
Institution borrowing the object(s).
|
||||
CIDOC-CRM: P29_custody_received_by - identifies the E39 Actor who receives custody.
|
||||
required: true
|
||||
range: uriorcurie
|
||||
inlined: false
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/custodian/nl/rijksmuseum
|
||||
borrower_contact:
|
||||
has_or_had_contact_point: # was: borrower_contact - migrated per Rule 53/56 (2026-01-17)
|
||||
description: >-
|
||||
Contact person at borrowing institution for this loan.
|
||||
required: false
|
||||
range: string
|
||||
examples:
|
||||
|
|
@ -413,8 +346,8 @@ classes:
|
|||
- https://nde.nl/ontology/hc/object/mauritshuis-girl-pearl-earring
|
||||
lender: https://nde.nl/ontology/hc/custodian/nl/mauritshuis
|
||||
lender_contact: Dr. Maria van der Berg, Registrar
|
||||
borrower: https://nde.nl/ontology/hc/custodian/nl/rijksmuseum
|
||||
borrower_contact: Anna de Wit, Exhibition Coordinator
|
||||
custody_received_by: https://nde.nl/ontology/hc/custodian/nl/rijksmuseum
|
||||
has_or_had_contact_point: Anna de Wit, Exhibition Coordinator # was: borrower_contact
|
||||
loan_status: CLOSED
|
||||
loan_type: EXHIBITION_LOAN
|
||||
loan_purpose: Major Vermeer retrospective exhibition
|
||||
|
|
@ -443,7 +376,7 @@ classes:
|
|||
has_or_had_loaned_object:
|
||||
- https://nde.nl/ontology/hc/object/rijksmuseum-night-watch
|
||||
lender: https://nde.nl/ontology/hc/custodian/nl/rijksmuseum
|
||||
borrower: https://nde.nl/ontology/hc/custodian/uk/national-gallery
|
||||
custody_received_by: https://nde.nl/ontology/hc/custodian/uk/national-gallery
|
||||
loan_status: DECLINED
|
||||
loan_type: EXHIBITION_LOAN
|
||||
loan_purpose: Proposed Dutch Golden Age exhibition
|
||||
|
|
@ -457,7 +390,7 @@ classes:
|
|||
has_or_had_loaned_object:
|
||||
- https://nde.nl/ontology/hc/object/leiden-university-rembrandt-drawing-001
|
||||
lender: https://nde.nl/ontology/hc/custodian/nl/leiden-university-libraries
|
||||
borrower: https://nde.nl/ontology/hc/custodian/nl/rkd
|
||||
custody_received_by: https://nde.nl/ontology/hc/custodian/nl/rkd
|
||||
loan_status: RETURNED
|
||||
loan_type: STUDY_LOAN
|
||||
loan_purpose: Technical analysis for Rembrandt drawings catalogue
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./LocalGovernmentArchiveRecordSetType
|
||||
- ./LocalGovernmentArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./LocalGovernmentArchiveRecordSetType
|
||||
- ./LocalGovernmentArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
LocalAdministrationFonds:
|
||||
is_a: LocalGovernmentArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./LocalHistoryArchiveRecordSetType
|
||||
- ./LocalHistoryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./LocalHistoryArchiveRecordSetType
|
||||
- ./LocalHistoryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
LocalHistoryFonds:
|
||||
is_a: LocalHistoryArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ imports:
|
|||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ./MailingListArchiveRecordSetType
|
||||
- ./DigitalPlatformType
|
||||
- ../slots/platform_type_id
|
||||
classes:
|
||||
MailingListArchive:
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MailingListArchiveRecordSetType
|
||||
- ./MailingListArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MailingListArchiveRecordSetType
|
||||
- ./MailingListArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
EmailArchiveCollection:
|
||||
is_a: MailingListArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MediaArchiveRecordSetType
|
||||
- ./MediaArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MediaArchiveRecordSetType
|
||||
- ./MediaArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
MediaProductionFonds:
|
||||
is_a: MediaArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -25,15 +25,18 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/has_or_had_identifier
|
||||
- ../slots/has_or_had_label
|
||||
- ../slots/has_or_had_label # also replaces algorithm_name - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/has_or_had_description
|
||||
- ../slots/has_or_had_version # was: algorithm_version - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../enums/MethodologyTypeEnum
|
||||
- ../slots/algorithm_name
|
||||
- ../slots/algorithm_version
|
||||
# REMOVED - algorithm_name migrated to has_or_had_label (2026-01-17, Rule 53/56)
|
||||
# - ../slots/algorithm_name
|
||||
# REMOVED - algorithm_version migrated to has_or_had_version (2026-01-17, Rule 53/56)
|
||||
# - ../slots/algorithm_version
|
||||
- ../slots/confidence_threshold
|
||||
- ../slots/methodology_type
|
||||
|
||||
|
|
@ -92,10 +95,13 @@ classes:
|
|||
slots:
|
||||
- has_or_had_identifier
|
||||
- methodology_type
|
||||
- has_or_had_label
|
||||
- has_or_had_label # also replaces algorithm_name - migrated per Rule 53/56 (2026-01-17)
|
||||
- has_or_had_description
|
||||
- algorithm_name
|
||||
- algorithm_version
|
||||
- has_or_had_version # was: algorithm_version - migrated per Rule 53/56 (2026-01-17)
|
||||
# REMOVED - algorithm_name migrated to has_or_had_label (2026-01-17, Rule 53/56)
|
||||
# - algorithm_name
|
||||
# REMOVED - algorithm_version migrated to has_or_had_version (2026-01-17, Rule 53/56)
|
||||
# - algorithm_version
|
||||
- confidence_threshold
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
|
|
@ -122,10 +128,15 @@ classes:
|
|||
range: string
|
||||
required: false
|
||||
description: >-
|
||||
Human-readable name for the methodology.
|
||||
Human-readable name for the methodology or algorithm.
|
||||
MIGRATED: Now serves both methodology name AND algorithm_name (Rule 53/56).
|
||||
examples:
|
||||
- value: "RetinaFace + ArcFace clustering"
|
||||
description: Face detection and clustering pipeline
|
||||
- value: "YOLOv8"
|
||||
description: Object detection model (was algorithm_name)
|
||||
- value: "ArcFace"
|
||||
description: Face recognition model (was algorithm_name)
|
||||
has_or_had_description:
|
||||
range: string
|
||||
required: false
|
||||
|
|
@ -134,24 +145,27 @@ classes:
|
|||
examples:
|
||||
- value: "Faces detected using RetinaFace, clustered using ArcFace embeddings"
|
||||
description: Algorithm description
|
||||
algorithm_name:
|
||||
has_or_had_version: # was: algorithm_version - migrated per Rule 53/56 (2026-01-17)
|
||||
range: string
|
||||
required: false
|
||||
description: >-
|
||||
Name of the algorithm or model used.
|
||||
examples:
|
||||
- value: "YOLOv8"
|
||||
description: Object detection model
|
||||
- value: "ArcFace"
|
||||
description: Face recognition model
|
||||
algorithm_version:
|
||||
range: string
|
||||
required: false
|
||||
description: >-
|
||||
Version of the algorithm or model.
|
||||
Version of the algorithm, model, or methodology specification.
|
||||
MIGRATED from algorithm_version per slot_fixes.yaml (Rule 53/56).
|
||||
examples:
|
||||
- value: "1.0.0"
|
||||
- value: "v8n"
|
||||
# REMOVED - algorithm_name migrated to has_or_had_label (2026-01-17, Rule 53/56)
|
||||
# algorithm_name:
|
||||
# range: string
|
||||
# required: false
|
||||
# description: >-
|
||||
# Name of the algorithm or model used.
|
||||
# REMOVED - algorithm_version migrated to has_or_had_version (2026-01-17, Rule 53/56)
|
||||
# algorithm_version:
|
||||
# range: string
|
||||
# required: false
|
||||
# description: >-
|
||||
# Version of the algorithm or model.
|
||||
confidence_threshold:
|
||||
range: float
|
||||
required: false
|
||||
|
|
@ -172,11 +186,11 @@ classes:
|
|||
examples:
|
||||
- value:
|
||||
methodology_type: ENTITY_RESOLUTION
|
||||
has_or_had_label: "RetinaFace + ArcFace clustering"
|
||||
has_or_had_label: "RetinaFace + ArcFace clustering" # includes algorithm name
|
||||
has_or_had_description: >-
|
||||
Faces detected using RetinaFace model, then clustered
|
||||
using ArcFace embeddings with cosine similarity threshold 0.6.
|
||||
algorithm_name: "ArcFace"
|
||||
has_or_had_version: "1.0" # was: algorithm_name: "ArcFace" - combined into label
|
||||
confidence_threshold: 0.6
|
||||
description: Face entity resolution methodology
|
||||
- value:
|
||||
|
|
@ -185,8 +199,7 @@ classes:
|
|||
has_or_had_description: >-
|
||||
Objects tracked across video frames using DeepSORT algorithm
|
||||
with Kalman filtering and appearance features.
|
||||
algorithm_name: "DeepSORT"
|
||||
algorithm_version: "1.0"
|
||||
has_or_had_version: "1.0" # was: algorithm_version
|
||||
description: Object tracking methodology
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -11,44 +11,44 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MilitaryArchiveRecordSetType
|
||||
- ./MilitaryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MilitaryArchiveRecordSetType
|
||||
- ./MilitaryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/preservation_note
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
MilitaryOperationsFonds:
|
||||
is_a: MilitaryArchiveRecordSetType
|
||||
|
|
@ -164,6 +164,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -239,6 +245,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -315,6 +328,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:MuseumType"]'
|
||||
|
|
@ -388,6 +407,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- preservation_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:LibraryType"]'
|
||||
|
|
@ -472,6 +498,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:MuseumType", "hc:ResearchOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MonasteryArchiveRecordSetType
|
||||
- ./MonasteryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MonasteryArchiveRecordSetType
|
||||
- ./MonasteryArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
MonasticRecordsFonds:
|
||||
is_a: MonasteryArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,41 +11,41 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MunicipalArchiveRecordSetType
|
||||
- ./MunicipalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MunicipalArchiveRecordSetType
|
||||
- ./MunicipalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/privacy_note
|
||||
- ../slots/record_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/scope_exclude
|
||||
- ../slots/scope_include
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
CouncilGovernanceFonds:
|
||||
is_a: MunicipalArchiveRecordSetType
|
||||
|
|
@ -100,6 +100,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -177,6 +183,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:OfficialInstitutionType"]'
|
||||
|
|
@ -250,6 +263,13 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -328,6 +348,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -407,6 +433,12 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HeritageSocietyType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MuseumArchiveRecordSetType
|
||||
- ./MuseumArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MuseumArchiveRecordSetType
|
||||
- ./MuseumArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
MuseumAdministrationFonds:
|
||||
is_a: MuseumArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ./Facility
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/broader_type
|
||||
- ../slots/has_or_had_hypernym # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
- ../slots/has_or_had_identifier # was: wikidata_entity - migrated per Rule 53 (2026-01-16)
|
||||
- ./WikiDataIdentifier
|
||||
classes:
|
||||
|
|
@ -148,9 +148,11 @@ classes:
|
|||
pattern: ^Q[0-9]+$
|
||||
required: true
|
||||
description: Wikidata identifier (Q-number) for this Museum type concept
|
||||
broader_type:
|
||||
has_or_had_hypernym: # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
description: |
|
||||
MIGRATED from broader_type (Rule 53).
|
||||
For museum type subtypes, links to parent type in hierarchy.
|
||||
range: MuseumType
|
||||
required: false
|
||||
conservation_lab:
|
||||
range: boolean
|
||||
required: false
|
||||
|
|
@ -189,7 +191,7 @@ classes:
|
|||
- kunstmuseum@nl
|
||||
- Kunstmuseum@de
|
||||
has_or_had_description: museum that primarily exhibits works of art # was: type_description - migrated per Rule 53/56 (2026-01-16)
|
||||
broader_type: https://nde.nl/ontology/hc/type/museum/Q33506
|
||||
has_or_had_hypernym: https://nde.nl/ontology/hc/type/museum/Q33506 # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
collection_focus:
|
||||
- paintings
|
||||
- sculptures
|
||||
|
|
@ -214,7 +216,7 @@ classes:
|
|||
- Natural History Museum@en
|
||||
- natuurhistorisch museum@nl
|
||||
has_or_had_description: museum that exhibits natural history specimens # was: type_description - migrated per Rule 53/56 (2026-01-16)
|
||||
broader_type: https://nde.nl/ontology/hc/type/museum/Q33506
|
||||
has_or_had_hypernym: https://nde.nl/ontology/hc/type/museum/Q33506 # was: broader_type - migrated per Rule 53 (2026-01-17)
|
||||
collection_focus:
|
||||
- biological specimens
|
||||
- fossils
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./MusicArchiveRecordSetType
|
||||
- ./MusicArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./MusicArchiveRecordSetType
|
||||
- ./MusicArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
MusicManuscriptCollection:
|
||||
is_a: MusicArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./NationalArchivesRecordSetType
|
||||
- ./NationalArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./NationalArchivesRecordSetType
|
||||
- ./NationalArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
GovernmentAdministrativeFonds:
|
||||
is_a: NationalArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -152,6 +167,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./NewspaperClippingsArchiveRecordSetType
|
||||
- ./NewspaperClippingsArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./NewspaperClippingsArchiveRecordSetType
|
||||
- ./NewspaperClippingsArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ClippingsCollection:
|
||||
is_a: NewspaperClippingsArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./NobilityArchiveRecordSetType
|
||||
- ./NobilityArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./NobilityArchiveRecordSetType
|
||||
- ./NobilityArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
NobleFamilyPapersFonds:
|
||||
is_a: NobilityArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./NotarialArchiveRecordSetType
|
||||
- ./NotarialArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./NotarialArchiveRecordSetType
|
||||
- ./NotarialArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
NotarialActsSeries:
|
||||
is_a: NotarialArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ imports:
|
|||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ./OnlineNewsArchiveRecordSetType
|
||||
- ./DigitalPlatformType
|
||||
- ../slots/platform_type_id
|
||||
classes:
|
||||
OnlineNewsArchive:
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./OnlineNewsArchiveRecordSetType
|
||||
- ./OnlineNewsArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./OnlineNewsArchiveRecordSetType
|
||||
- ./OnlineNewsArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DigitalNewsCollection:
|
||||
is_a: OnlineNewsArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -126,18 +126,6 @@ classes:
|
|||
description: Airport branch name
|
||||
- value: Conservation Division - Amersfoort
|
||||
description: Off-site conservation facility
|
||||
branch_type:
|
||||
range: OrganizationBranchTypeEnum
|
||||
required: true
|
||||
description: |
|
||||
DEPRECATED: Use has_or_had_type with BranchType class instead.
|
||||
MIGRATION: 2026-01-13 - Replaced by has_or_had_type slot.
|
||||
deprecated: "Use has_or_had_type with BranchType class instead"
|
||||
examples:
|
||||
- value: EXHIBITION_SPACE
|
||||
description: Exhibition branch type
|
||||
- value: CONSERVATION_LAB
|
||||
description: Conservation facility type
|
||||
has_or_had_type:
|
||||
range: BranchType
|
||||
required: true
|
||||
|
|
@ -153,15 +141,6 @@ classes:
|
|||
description: Exhibition branch type
|
||||
- value: ConservationLabUnit
|
||||
description: Conservation facility type
|
||||
branch_description:
|
||||
range: string
|
||||
description: >-
|
||||
DEPRECATED: Use has_or_had_description instead.
|
||||
MIGRATION: 2026-01-15 - Replaced by has_or_had_description slot per Rule 53.
|
||||
deprecated: "Use has_or_had_description instead"
|
||||
examples:
|
||||
- value: Small exhibition space at Schiphol Airport featuring rotating highlights from the Rijksmuseum collection.
|
||||
description: Branch purpose description
|
||||
has_or_had_description:
|
||||
range: string
|
||||
description: >-
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- ../slots/outdoor_site_name
|
||||
- ../slots/outdoor_site_description
|
||||
- ../slots/outdoor_site_type
|
||||
- ../slots/bio_type_classification
|
||||
- ../slots/has_or_had_classification # was: bio_type_classification - migrated per Rule 53/56 (2026-01-17)
|
||||
- ../slots/feature_type_classification
|
||||
# REMOVED 2026-01-15: ../slots/area_hectares - migrated to has_or_had_area + Area (Rule 53)
|
||||
# REMOVED 2026-01-15: ../slots/has_area_in_hectare - BESPOKE SLOT INCORRECTLY CREATED, replaced with has_or_had_area + Area (Rule 53)
|
||||
|
|
@ -68,7 +68,7 @@ classes:
|
|||
\n1. **Museum Sculpture Garden**:\n ```yaml\n OutdoorSite:\n outdoor_site_id: \"https://nde.nl/ontology/hc/aux/kroller-muller-sculpture\"\
|
||||
\n outdoor_site_name: \"Kröller-Müller Beeldentuin\"\n feature_type_classification: SCULPTURE_GARDEN\n has_or_had_area:\
|
||||
\n - area_value: 25.0\n has_or_had_unit:\n unit_type: HECTARE\n unit_symbol: \"ha\"\n has_or_had_artwork_count: 160\n ```\n\n2. **Historic Estate Grounds**:\n ```yaml\n OutdoorSite:\n outdoor_site_name:\
|
||||
\ \"Paleis Het Loo Tuinen\"\n bio_type_classification: GARDEN\n feature_type_classification: FORMAL_GARDEN\n\
|
||||
\ \"Paleis Het Loo Tuinen\"\n has_or_had_classification: GARDEN # was: bio_type_classification\n feature_type_classification: FORMAL_GARDEN\n\
|
||||
\ historic_garden_designation: true\n ```\n\n3. **Archaeological Site**:\n ```yaml\n OutdoorSite:\n outdoor_site_name:\
|
||||
\ \"Archeologisch Park Matilo\"\n feature_type_classification: ARCHAEOLOGICAL_SITE\n period_covered: \"Roman\
|
||||
\ period\"\n ```\n"
|
||||
|
|
@ -88,7 +88,7 @@ classes:
|
|||
- has_or_had_animal_species_count
|
||||
- has_or_had_area
|
||||
- has_or_had_artwork_count
|
||||
- bio_type_classification
|
||||
- has_or_had_classification # was: bio_type_classification - migrated per Rule 53/56 (2026-01-17)
|
||||
- conservation_status
|
||||
- feature_type_classification
|
||||
- historic_garden_designation
|
||||
|
|
@ -137,9 +137,13 @@ classes:
|
|||
description: Outdoor art display
|
||||
- value: FORMAL_GARDEN
|
||||
description: Historic garden
|
||||
bio_type_classification:
|
||||
has_or_had_classification: # was: bio_type_classification - migrated per Rule 53/56 (2026-01-17)
|
||||
range: BioCustodianTypeEnum
|
||||
required: false
|
||||
description: >-
|
||||
Optional biological/botanical classification from BioCustodianTypeEnum.
|
||||
BioCustodianTypeEnum contains 1142 Wikidata-sourced types for
|
||||
botanical gardens, zoos, arboreta, and nature facilities.
|
||||
examples:
|
||||
- value: BOTANICAL_GARDEN
|
||||
description: Botanical garden
|
||||
|
|
@ -281,7 +285,7 @@ classes:
|
|||
outdoor_site_name: Paleis Het Loo Tuinen
|
||||
outdoor_site_description: Formal baroque gardens restored to 17th-century design. Part of royal palace complex.
|
||||
outdoor_site_type: FORMAL_GARDEN
|
||||
bio_type_classification: GARDEN
|
||||
has_or_had_classification: GARDEN # was: bio_type_classification
|
||||
has_or_had_area:
|
||||
- area_value: 650.0
|
||||
has_or_had_unit:
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ParishArchiveRecordSetType
|
||||
- ./ParishArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ParishArchiveRecordSetType
|
||||
- ./ParishArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ParishSpecificRegisterSeries:
|
||||
is_a: ParishArchiveRecordSetType
|
||||
|
|
@ -61,6 +61,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -92,6 +97,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -123,6 +133,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./ParliamentaryArchivesRecordSetType
|
||||
- ./ParliamentaryArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./ParliamentaryArchivesRecordSetType
|
||||
- ./ParliamentaryArchives
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
ParliamentaryProceedingsFonds:
|
||||
is_a: ParliamentaryArchivesRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./PartyArchiveRecordSetType
|
||||
- ./PartyArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./PartyArchiveRecordSetType
|
||||
- ./PartyArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
PartyAdministrationFonds:
|
||||
is_a: PartyArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./PerformingArtsArchiveRecordSetType
|
||||
- ./PerformingArtsArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./PerformingArtsArchiveRecordSetType
|
||||
- ./PerformingArtsArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
TheatreRecordsFonds:
|
||||
is_a: PerformingArtsArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./PhotoArchiveRecordSetType
|
||||
- ./PhotoArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./PhotoArchiveRecordSetType
|
||||
- ./PhotoArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
PhotographerPapersCollection:
|
||||
is_a: PhotoArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./PoliticalArchiveRecordSetType
|
||||
- ./PoliticalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./PoliticalArchiveRecordSetType
|
||||
- ./PoliticalArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
PoliticalPartyFonds:
|
||||
is_a: PoliticalArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -90,6 +95,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
@ -121,6 +131,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
|
|
@ -11,35 +11,35 @@ prefixes:
|
|||
wd: http://www.wikidata.org/entity/
|
||||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ./PostcustodialArchiveRecordSetType
|
||||
- ./PostcustodialArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- linkml:types
|
||||
- ./PostcustodialArchiveRecordSetType
|
||||
- ./PostcustodialArchive
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ./SpecificityAnnotation
|
||||
- ./TemplateSpecificityScores
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
- ../slots/has_or_had_custodian_type
|
||||
- ../slots/organizational_principle
|
||||
- ../slots/organizational_principle_uri
|
||||
- ../slots/record_holder
|
||||
- ../slots/record_holder_note
|
||||
- ../slots/record_set_type
|
||||
- ../slots/specificity_annotation
|
||||
- ../slots/template_specificity
|
||||
classes:
|
||||
DistributedRecordsCollection:
|
||||
is_a: PostcustodialArchiveRecordSetType
|
||||
|
|
@ -59,6 +59,11 @@ classes:
|
|||
- has_or_had_custodian_type
|
||||
- specificity_annotation
|
||||
- template_specificity
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
slot_usage:
|
||||
has_or_had_custodian_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue