Refactor slot names and descriptions across multiple YAML files for consistency and clarity
- Updated slot names to improve semantic clarity: - `has_type` changed to `categorized_as` - `has_location` changed to `located_at` - `coordinates` changed to `has_coordinates` - `country` changed to `in_country` - `like_count` changed to `has_quantity` - Adjusted descriptions and annotations for slots to enhance understanding and alignment with ontology standards. - Modified imports in `WomensArchives.yaml` and `WomensArchivesRecordSetTypes.yaml` to reflect new slot names. - Enhanced multilingual support in `has_record_set` slot definition with additional translations and structured aliases. - General cleanup and standardization of slot definitions across various classes including `Wikidata`, `Youtube`, and `WorkExperience`.
This commit is contained in:
parent
e5fc1a3fb4
commit
d3a65a496c
794 changed files with 4423 additions and 4839 deletions
61
.opencode/rules/canonical-slot-protection-rule.md
Normal file
61
.opencode/rules/canonical-slot-protection-rule.md
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# Rule: Canonical Slot Protection
|
||||
|
||||
## Summary
|
||||
|
||||
When resolving slot aliases to canonical names, a slot name that has its own `.yaml` file (i.e., is itself a canonical slot) MUST NOT be replaced with a different canonical name, even if it also appears as an alias in another slot file.
|
||||
|
||||
## Context
|
||||
|
||||
Slot files in `schemas/20251121/linkml/modules/slots/20260202_matang/` (top-level and `new/`) each define a canonical slot name. Some slot files also list aliases that overlap with canonical names from other slot files. These cross-references are intentional (e.g., indicating semantic relatedness) but do NOT mean the referenced slot should be renamed.
|
||||
|
||||
## Rule
|
||||
|
||||
1. **Before renaming any slot reference** (in `slots:`, `slot_usage:`, or `imports:` of class files), check whether the current name is itself a canonical slot name — i.e., whether a `.yaml` file exists for it in the slots directory.
|
||||
|
||||
2. **If the name IS canonical** (has its own `.yaml` file), do NOT rename it and do NOT redirect its import. The class file is correctly referencing that slot's own definition file.
|
||||
|
||||
3. **Only rename a slot reference** if the name does NOT have its own `.yaml` file and is ONLY found as an alias in another slot's file.
|
||||
|
||||
## Examples
|
||||
|
||||
### WRONG
|
||||
|
||||
```yaml
|
||||
# categorized_as.yaml defines aliases: [..., "has_type", ...]
|
||||
# has_type.yaml exists with canonical name "has_type"
|
||||
|
||||
# WRONG: Renaming has_type -> categorized_as in a class file
|
||||
# This destroys the valid reference to has_type.yaml
|
||||
slots:
|
||||
- categorized_as # was: has_type -- INCORRECT REPLACEMENT
|
||||
```
|
||||
|
||||
### CORRECT
|
||||
|
||||
```yaml
|
||||
# has_type.yaml exists => "has_type" is canonical => leave it alone
|
||||
slots:
|
||||
- has_type # CORRECT: has_type is canonical, keep it
|
||||
|
||||
# "custodian_type" does NOT have its own .yaml file
|
||||
# "custodian_type" is listed as an alias in has_type.yaml
|
||||
# => rename custodian_type -> has_type
|
||||
slots:
|
||||
- has_type # was: custodian_type -- CORRECT REPLACEMENT
|
||||
```
|
||||
|
||||
## Implementation Check
|
||||
|
||||
```python
|
||||
# Pseudocode for alias resolution
|
||||
def should_rename(slot_name, alias_map, existing_slot_files):
|
||||
if slot_name in existing_slot_files:
|
||||
return False # It's canonical — do not rename
|
||||
if slot_name in alias_map:
|
||||
return True # It's only an alias — rename to canonical
|
||||
return False # Unknown — leave alone
|
||||
```
|
||||
|
||||
## Rationale
|
||||
|
||||
Multiple slot files may list overlapping aliases for documentation or semantic linking purposes. A canonical slot name appearing as an alias in another file does not invalidate the original slot definition. Treating it as an alias would incorrectly redirect class files away from the slot's own definition, breaking the schema's intended structure.
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"generated": "2026-02-10T22:34:46.431Z",
|
||||
"generated": "2026-02-11T10:20:12.361Z",
|
||||
"schemaRoot": "/schemas/20251121/linkml",
|
||||
"totalFiles": 2916,
|
||||
"categoryCounts": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"generated": "2026-02-11T10:20:12.361Z",
|
||||
"generated": "2026-02-11T10:54:34.392Z",
|
||||
"schemaRoot": "/schemas/20251121/linkml",
|
||||
"totalFiles": 2916,
|
||||
"categoryCounts": {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
- ../slots/20260202_matang/related_to
|
||||
classes:
|
||||
AcademicArchive:
|
||||
|
|
@ -24,7 +24,7 @@ classes:
|
|||
description: Archive of a higher education institution (university, college, polytechnic).
|
||||
slots:
|
||||
- has_type
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
- has_hypernym
|
||||
- has_label
|
||||
- has_score
|
||||
|
|
@ -58,7 +58,7 @@ classes:
|
|||
- audiovisual materials
|
||||
- campus life documentation
|
||||
slot_usage:
|
||||
hold_or_held_record_set_type:
|
||||
hold_record_set:
|
||||
equals_expression: '["hc:UniversityAdministrativeFonds", "hc:StudentRecordSeries", "hc:FacultyPaperCollection", "hc:CampusDocumentationCollection"]
|
||||
'
|
||||
identified_by:
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ imports:
|
|||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_scope
|
||||
classes:
|
||||
UniversityAdministrativeFonds:
|
||||
|
|
@ -75,27 +74,27 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: UniversityAdministrativeFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the fonds
|
||||
principle. The fonds structure reflects provenance from university central
|
||||
administration.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["governance records", "committee records", "policy records",
|
||||
"strategic planning", "accreditation records"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["student records", "faculty papers", "research data"]'
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
|
|
@ -158,30 +157,30 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: AcademicStudentRecordSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the series
|
||||
principle. Typically a series within the university administration fonds
|
||||
or registrar's office fonds.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["enrollment records", "academic transcripts", "graduation
|
||||
records", "disciplinary records", "financial aid records"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["faculty records", "research records", "administrative policy"]'
|
||||
privacy_note:
|
||||
has_note:
|
||||
equals_string: Subject to educational records privacy laws (FERPA, GDPR, AVG). Access
|
||||
restrictions typically apply for records less than 75 years old.
|
||||
FacultyPaperCollection:
|
||||
|
|
@ -243,26 +242,26 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:LibraryType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: FacultyPaperCollection
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the fonds
|
||||
principle. Personal archives with individual faculty member as creator/accumulator.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["research documentation", "correspondence", "lecture notes",
|
||||
"manuscripts", "conference papers"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["official university records", "student records", "administrative
|
||||
files"]'
|
||||
CampusDocumentationCollection:
|
||||
|
|
@ -325,25 +324,25 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:LibraryType", "hc:MuseumType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CampusDocumentationCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the collection
|
||||
principle. May be assembled collection (artificial) organized by subject
|
||||
or documentation purpose.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["photographs", "audiovisual materials", "publications", "ephemera",
|
||||
"oral histories", "memorabilia"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["administrative records", "student records", "faculty papers"]'
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_protocol
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/embargo
|
||||
- ../slots/20260202_matang/new/has_embargo_reason
|
||||
- ../slots/20260202_matang/restricted_by
|
||||
- ../slots/20260202_matang/has_level
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/impose
|
||||
|
|
@ -25,7 +25,7 @@ imports:
|
|||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/pose_condition
|
||||
- ../slots/20260202_matang/new/policy_review_date
|
||||
- ../slots/20260202_matang/has_roadmap
|
||||
- ../slots/20260202_matang/has_statement
|
||||
- ../slots/20260202_matang/has_url
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
|
|
@ -48,31 +48,31 @@ classes:
|
|||
slots:
|
||||
- has_description
|
||||
- has_level
|
||||
- requires_appointment
|
||||
- poses_or_posed_condition
|
||||
- requires_or_required
|
||||
- credentials_required
|
||||
- cultural_protocol_url
|
||||
- require
|
||||
- pose_condition
|
||||
- require
|
||||
- require
|
||||
- has_protocol
|
||||
- has_embargo_end_date
|
||||
- has_embargo_reason
|
||||
- imposes_or_imposed
|
||||
- restricted_by
|
||||
- impose
|
||||
- legal_basis
|
||||
- policy_id
|
||||
- policy_name
|
||||
- registration_required
|
||||
- identified_by
|
||||
- has_label
|
||||
- require
|
||||
- review_date
|
||||
- rights_statement
|
||||
- rights_statement_url
|
||||
- has_score
|
||||
- temporal_extent
|
||||
slot_usage:
|
||||
policy_id:
|
||||
identified_by:
|
||||
# range: string # uriorcurie
|
||||
required: true
|
||||
identifier: true
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/access-policy/open-access
|
||||
policy_name:
|
||||
has_label:
|
||||
# range: string
|
||||
required: true
|
||||
examples:
|
||||
|
|
@ -98,7 +98,7 @@ classes:
|
|||
description_text: Open to all visitors during reading room hours (Mon-Fri 9-17)
|
||||
- value:
|
||||
description_text: Access restricted to academic researchers with institutional has_affiliation
|
||||
poses_or_posed_condition:
|
||||
pose_condition:
|
||||
range: Condition
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
@ -121,21 +121,21 @@ classes:
|
|||
examples:
|
||||
- value: http://rightsstatements.org/vocab/InC/1.0/
|
||||
- value: http://rightsstatements.org/vocab/NoC-US/1.0/
|
||||
requires_appointment:
|
||||
require:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
- value: false
|
||||
registration_required:
|
||||
require:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
credentials_required:
|
||||
require:
|
||||
# range: string
|
||||
examples:
|
||||
- value: INSTITUTIONAL
|
||||
- value: true
|
||||
imposes_or_imposed:
|
||||
impose:
|
||||
# range: string # Fee
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
multivalued: true
|
||||
|
|
@ -155,12 +155,12 @@ classes:
|
|||
range: date
|
||||
examples:
|
||||
- value: '2050-01-01'
|
||||
has_embargo_reason:
|
||||
restricted_by:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Donor privacy restrictions per deed of gift
|
||||
- value: Contains personal data protected under GDPR
|
||||
cultural_protocol_url:
|
||||
has_protocol:
|
||||
range: uri
|
||||
examples:
|
||||
- value: https://localcontexts.org/tk-labels/
|
||||
|
|
@ -181,7 +181,7 @@ classes:
|
|||
- value:
|
||||
begin_of_the_begin: '2024-01-01'
|
||||
end_of_the_end: '2050-12-31'
|
||||
requires_or_required:
|
||||
require:
|
||||
range: Appointment
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
@ -209,7 +209,7 @@ classes:
|
|||
has_label: PUBLIC_OPEN
|
||||
has_description:
|
||||
description_text: Open to all visitors during reading room hours
|
||||
poses_or_posed_condition:
|
||||
pose_condition:
|
||||
- has_type: AccessCondition
|
||||
has_description:
|
||||
description_text: Valid government-issued ID required
|
||||
|
|
@ -240,7 +240,7 @@ classes:
|
|||
has_label: TEMPORARILY_CLOSED
|
||||
has_description:
|
||||
description_text: Materials in preservation storage, not currently accessible
|
||||
poses_or_posed_condition:
|
||||
pose_condition:
|
||||
- has_type: ProcessingCondition
|
||||
has_description:
|
||||
description_text: Awaiting processing and cataloging
|
||||
|
|
@ -257,7 +257,7 @@ classes:
|
|||
has_label: RESEARCHERS_ONLY
|
||||
has_description:
|
||||
description_text: Academic researchers with institutional affiliation
|
||||
requires_or_required:
|
||||
require:
|
||||
- appointment_id: hc:appointment/special-collections-booking
|
||||
has_label: Special Collections Appointment
|
||||
has_description: 'Appointments for manuscript and rare book collections must be made
|
||||
|
|
|
|||
|
|
@ -43,9 +43,9 @@ classes:
|
|||
- has_description
|
||||
- temporal_extent
|
||||
- succeeded_by
|
||||
- preceding_activity
|
||||
- has_activity
|
||||
- has_status
|
||||
- note
|
||||
- has_note
|
||||
- has_score
|
||||
slot_usage:
|
||||
identified_by:
|
||||
|
|
@ -85,7 +85,7 @@ classes:
|
|||
inlined: false
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/activity/conservation-treatment-2025
|
||||
preceding_activity:
|
||||
has_activity:
|
||||
# range: string
|
||||
inlined: false
|
||||
examples:
|
||||
|
|
@ -97,7 +97,7 @@ classes:
|
|||
- value: IN_PROGRESS
|
||||
- value: COMPLETED
|
||||
- value: PLANNED
|
||||
note:
|
||||
has_note:
|
||||
# range: string
|
||||
multivalued: true
|
||||
annotations:
|
||||
|
|
|
|||
|
|
@ -13,12 +13,12 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/created
|
||||
- ../slots/20260202_matang/begin_of_the_begin
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/modified
|
||||
- ../slots/20260202_matang/updated_at
|
||||
classes:
|
||||
ActivityType:
|
||||
class_uri: skos:Concept
|
||||
|
|
@ -35,8 +35,8 @@ classes:
|
|||
- prov:Activity
|
||||
- aat:300054277
|
||||
slots:
|
||||
- created
|
||||
- modified
|
||||
- begin_of_the_begin
|
||||
- updated_at
|
||||
- has_score
|
||||
- has_description
|
||||
- identified_by
|
||||
|
|
@ -64,9 +64,9 @@ classes:
|
|||
required: false
|
||||
examples:
|
||||
- value: Activities related to the ongoing management and care of collections
|
||||
created:
|
||||
begin_of_the_begin:
|
||||
range: datetime
|
||||
modified:
|
||||
updated_at:
|
||||
range: datetime
|
||||
annotations:
|
||||
specificity_score: '0.40'
|
||||
|
|
|
|||
|
|
@ -16,17 +16,17 @@ imports:
|
|||
- ./AddressType
|
||||
- ./HouseNumber
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/country_name
|
||||
- ../slots/20260202_matang/in_country
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_section
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/derive_from # was: was_derived_from
|
||||
- ../slots/20260202_matang/generated_by # was: was_generated_by
|
||||
- ../slots/20260202_matang/located_in
|
||||
- ../slots/20260202_matang/new/latitude
|
||||
- ../slots/20260202_matang/new/locality
|
||||
- ../slots/20260202_matang/new/longitude
|
||||
- ../slots/20260202_matang/new/postal_code
|
||||
- ../slots/20260202_matang/has_latitude
|
||||
- ../slots/20260202_matang/has_locality
|
||||
- ../slots/20260202_matang/has_longitude
|
||||
- ../slots/20260202_matang/has_postal_code
|
||||
- ../slots/20260202_matang/new/region
|
||||
# default_range: string
|
||||
classes:
|
||||
|
|
@ -112,20 +112,20 @@ classes:
|
|||
# REMOVED: street_name - migrated to has_label + Label (2026-01-17, Rule 53/56)
|
||||
# REMOVED: street_address - redundant string slot; use house_number + has_label (2026-01-17, Rule 53/56)
|
||||
# Postal components
|
||||
- postal_code
|
||||
- has_postal_code
|
||||
# Locality/geographic hierarchy
|
||||
- locality
|
||||
- has_locality
|
||||
# REMOVED: city - migrated to located_in + City (2026-01-18, Rule 53)
|
||||
- located_in
|
||||
- region
|
||||
- country_name
|
||||
- in_country
|
||||
# Formatted representation (MIGRATED: address_formatted → has_label)
|
||||
- has_label
|
||||
# Classification (MIGRATED: address_type → has_type)
|
||||
- has_type
|
||||
# Geographic coordinates (for geocoded addresses)
|
||||
- latitude
|
||||
- longitude
|
||||
- has_latitude
|
||||
- has_longitude
|
||||
# Provenance
|
||||
- derived_from # was: was_derived_from - migrated per Rule 53
|
||||
- generated_by # was: was_generated_by - migrated per Rule 53
|
||||
|
|
@ -142,12 +142,12 @@ classes:
|
|||
# Street names should now use Label class with language tagging via has_label
|
||||
# REMOVED: street_address slot_usage - redundant string slot removed (2026-01-17, Rule 53/56)
|
||||
# Use house_number + has_label (street name as Label) instead of combined string
|
||||
postal_code:
|
||||
has_postal_code:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
- value: "1071 XX"
|
||||
locality:
|
||||
has_locality:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -171,7 +171,7 @@ classes:
|
|||
examples:
|
||||
- value: "Noord-Holland"
|
||||
- value: "NL-NH"
|
||||
country_name:
|
||||
in_country:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -198,12 +198,12 @@ classes:
|
|||
multivalued: false
|
||||
examples:
|
||||
- value: HeadquartersAddress
|
||||
latitude:
|
||||
has_latitude:
|
||||
range: float
|
||||
required: false
|
||||
examples:
|
||||
- value: 52.3600
|
||||
longitude:
|
||||
has_longitude:
|
||||
range: float
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/long_name
|
||||
- ../slots/20260202_matang/has_literal_form
|
||||
- ../slots/20260202_matang/new/short_name
|
||||
# default_range: string
|
||||
classes:
|
||||
|
|
@ -57,11 +57,11 @@ classes:
|
|||
- schema:PostalAddress
|
||||
- vcard:Address
|
||||
slots:
|
||||
- long_name
|
||||
- has_literal_form
|
||||
- short_name
|
||||
- has_type
|
||||
slot_usage:
|
||||
long_name:
|
||||
has_literal_form:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@ imports:
|
|||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_staff
|
||||
- ../slots/20260202_matang/new/is_leased
|
||||
- ../slots/20260202_matang/leased_by
|
||||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/lease_expiry
|
||||
- ../slots/20260202_matang/lease
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -45,8 +45,8 @@ classes:
|
|||
# has_admin_staff_count REMOVED - migrated to has_staff_member (Rule 53)
|
||||
- has_staff
|
||||
- has_function
|
||||
- is_leased
|
||||
- lease_expiry
|
||||
- leased_by
|
||||
- lease
|
||||
- has_score
|
||||
- derived_from
|
||||
- generated_by
|
||||
|
|
@ -87,12 +87,12 @@ classes:
|
|||
has_label: "FTE"
|
||||
has_type:
|
||||
has_label: "Administrative Staff"
|
||||
is_leased:
|
||||
leased_by:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
- value: false
|
||||
lease_expiry:
|
||||
lease:
|
||||
range: date
|
||||
examples:
|
||||
- value: '2028-12-31'
|
||||
|
|
|
|||
|
|
@ -28,5 +28,5 @@ classes:
|
|||
specificity_rationale: Generic utility class/slot created during migration
|
||||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- price
|
||||
- note
|
||||
- has_price
|
||||
- has_note
|
||||
|
|
|
|||
|
|
@ -8,14 +8,14 @@ imports:
|
|||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
- ../slots/20260202_matang/related_to
|
||||
classes:
|
||||
AdvertisingRadioArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
- has_score
|
||||
description: 'Sound archive specializing in advertising radio productions and commercials.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
RadioAdvertisementCollection:
|
||||
is_a: AdvertisingRadioArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: RadioAdvertisementCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: AdvertisingRadioArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by AdvertisingRadioArchive
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CampaignDocumentationSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: AdvertisingRadioArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by AdvertisingRadioArchive
|
||||
|
|
|
|||
|
|
@ -47,9 +47,9 @@ classes:
|
|||
- schema:Organization
|
||||
slots:
|
||||
- has_score
|
||||
- name
|
||||
- name_local
|
||||
- is_active
|
||||
- has_name
|
||||
- has_label
|
||||
- current
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -8,14 +8,14 @@ imports:
|
|||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
- ../slots/20260202_matang/related_to
|
||||
classes:
|
||||
AnimalSoundArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
- has_score
|
||||
description: "Archive specializing in animal sound recordings for research and preservation.\n\n**Wikidata**: Q18574935\n\n**Scope**:\nAnimal sound archives (Tierstimmenarchive) preserve:\n- Bioacoustic recordings of wildlife\n- Species identification recordings\n- Environmental soundscapes with animal vocalizations\n- Scientific research recordings\n- Educational materials for species identification\n\n**Scientific Context**:\nThese archives support:\n- Biodiversity monitoring and conservation\n- Species identification and taxonomy\n- Behavioral ecology research\n- Environmental impact assessment\n- Educational outreach\n\n**Related Types**:\n- SoundArchive (Q2230431) - Broader audio collection type\n- ScientificArchive (Q27032095) - Research-focused archives\n\n**Notable Examples**:\n- Tierstimmenarchiv (Museum f\xFCr Naturkunde Berlin)\n- Macaulay Library (Cornell Lab of Ornithology)\n- British Library Sound Archive wildlife collection\n"
|
||||
slot_usage:
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
BioacousticRecordingCollection:
|
||||
is_a: AnimalSoundArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: BioacousticRecordingCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: AnimalSoundArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by AnimalSoundArchive
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: FieldRecordingSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: AnimalSoundArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by AnimalSoundArchive
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@ imports:
|
|||
- linkml:types
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/motivation_type_description
|
||||
- ../slots/20260202_matang/new/motivation_type_id
|
||||
- ../slots/20260202_matang/new/motivation_type_name
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identify_as
|
||||
- ../slots/20260202_matang/has_label
|
||||
classes:
|
||||
AnnotationMotivationType:
|
||||
class_uri: oa:Motivation
|
||||
|
|
@ -38,15 +38,15 @@ classes:
|
|||
- prov:Influence
|
||||
- as:Object
|
||||
slots:
|
||||
- motivation_type_id
|
||||
- motivation_type_name
|
||||
- motivation_type_description
|
||||
- identify_as
|
||||
- has_label
|
||||
- has_description
|
||||
- has_score
|
||||
slot_usage:
|
||||
motivation_type_id:
|
||||
identify_as:
|
||||
identifier: true
|
||||
required: true
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
required: true
|
||||
comments:
|
||||
- Abstract base class - use specific subclasses (ClassifyingMotivation, etc.)
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/motivation_type_name
|
||||
- ../slots/20260202_matang/has_label
|
||||
classes:
|
||||
ClassifyingMotivation:
|
||||
is_a: AnnotationMotivationType
|
||||
|
|
@ -80,7 +80,7 @@ classes:
|
|||
- skos:Concept
|
||||
- crm:E17_Type_Assignment
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: classifying
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -154,7 +154,7 @@ classes:
|
|||
- dcterms:description
|
||||
- crm:E62_String
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: describing
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -224,7 +224,7 @@ classes:
|
|||
- crm:E15_Identifier_Assignment
|
||||
- schema:identifier
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: identifying
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -294,7 +294,7 @@ classes:
|
|||
- skos:Concept
|
||||
- schema:keywords
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: tagging
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -365,7 +365,7 @@ classes:
|
|||
- skos:related
|
||||
- schema:relatedLink
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: linking
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -433,7 +433,7 @@ classes:
|
|||
- schema:Comment
|
||||
- schema:UserComments
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: commenting
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -516,7 +516,7 @@ classes:
|
|||
related_mappings:
|
||||
- wcag:Guideline
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: accessibility
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -598,7 +598,7 @@ classes:
|
|||
- schema:SearchAction
|
||||
- dcat:Catalog
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: discovery
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -682,7 +682,7 @@ classes:
|
|||
- premis:Event
|
||||
- prov:Activity
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: preservation
|
||||
slots:
|
||||
- has_score
|
||||
|
|
@ -764,7 +764,7 @@ classes:
|
|||
- crm:E7_Activity
|
||||
- schema:ScholarlyArticle
|
||||
slot_usage:
|
||||
motivation_type_name:
|
||||
has_label:
|
||||
equals_string: research
|
||||
slots:
|
||||
- has_score
|
||||
|
|
|
|||
|
|
@ -28,11 +28,11 @@ classes:
|
|||
slots:
|
||||
- has_description
|
||||
- fulfilled_by
|
||||
- imposes_or_imposed
|
||||
- impose
|
||||
slot_usage:
|
||||
fulfilled_by:
|
||||
range: Applicant
|
||||
imposes_or_imposed:
|
||||
impose:
|
||||
range: GeographicExtent
|
||||
annotations:
|
||||
custodian_types: '["*"]'
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ imports:
|
|||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
- ../slots/20260202_matang/related_to
|
||||
classes:
|
||||
ArchitecturalArchive:
|
||||
|
|
@ -16,7 +16,7 @@ classes:
|
|||
class_uri: skos:Concept
|
||||
slots:
|
||||
- has_type
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
- has_score
|
||||
description: "Archive that safeguards architectural heritage through preservation of \narchitectural drawings, plans, models, and related documentation.\n\n**Wikidata**: Q121409581\n\n**Scope**:\nArchitectural archives preserve:\n- Architectural drawings and blueprints\n- Building plans and specifications\n- Scale models and maquettes\n- Photographs of buildings and construction\n- Correspondence and contracts\n- Architects' personal papers (Nachlass)\n- Design competitions documentation\n\n**Related Types**:\n- ArchivesForBuildingRecords (Q136027937) - Public building permits/records\n- ArtArchive (Q27032254) - Broader art documentation\n\n**Notable Examples**:\n- Canadian Centre for Architecture (CCA)\n- Deutsches Architekturmuseum archives\n- RIBA Architecture Library and Collections\n- Het Nieuwe Instituut (Netherlands)\n\n**Dual-Class Pattern**:\nThis class represents the CUSTODIAN type (the archive organization).\nFor the collection type, see `ArchitecturalRecordSetType` (rico:RecordSetType).\n\
|
||||
\n**Ontological Alignment**:\n- **SKOS**: skos:Concept with skos:broader Q166118 (archive)\n- **Schema.org**: schema:ArchiveOrganization\n- **RiC-O**: rico:CorporateBody (as agent)\n\n**Multilingual Labels**:\n- de: Architekturarchiv\n- fr: archives architecturales\n- nl: architectonisch archief\n"
|
||||
|
|
|
|||
|
|
@ -21,9 +21,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
ArchitecturalDrawingCollection:
|
||||
is_a: ArchitecturalArchiveRecordSetType
|
||||
|
|
@ -45,19 +44,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ArchitecturalDrawingCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchitecturalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchitecturalArchive
|
||||
|
|
@ -86,19 +85,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ArchitectPapersCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchitecturalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchitecturalArchive
|
||||
|
|
@ -125,19 +124,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: BuildingProjectFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchitecturalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchitecturalArchive
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/is_branch_of
|
||||
- ../slots/20260202_matang/branch_of
|
||||
- ../slots/20260202_matang/related_to
|
||||
classes:
|
||||
ArchivalLibrary:
|
||||
|
|
@ -19,7 +19,7 @@ classes:
|
|||
required: true
|
||||
examples:
|
||||
- value: BranchLibraryUnit
|
||||
is_branch_of:
|
||||
branch_of:
|
||||
required: true
|
||||
exact_mappings:
|
||||
- org:OrganizationalUnit
|
||||
|
|
|
|||
|
|
@ -29,5 +29,5 @@ classes:
|
|||
specificity_rationale: Generic utility class/slot created during migration
|
||||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- name
|
||||
- isil
|
||||
- has_name
|
||||
- identified_by
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ArchiveOfInternationalOrganization:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "Archive of an inter-governmental organization or international umbrella \norganization, preserving records of global significance.\n\n**Wikidata**: Q27031014\n\n**Scope**:\nInternational organization archives preserve:\n- Treaty documents and international agreements\n- Conference proceedings and resolutions\n- Correspondence between member states\n- Administrative records of international bodies\n- Reports and publications\n- Photographs and audiovisual documentation\n\n**Organizational Context**:\nThese archives are typically:\n- Part of UN system organizations (UNESCO, WHO, ILO, etc.)\n- European Union institutions (EU Commission, Parliament, etc.)\n- International NGO umbrella organizations\n- Regional intergovernmental bodies (AU, ASEAN, OAS, etc.)\n- International professional associations\n\n**Notable Examples**:\n- United Nations Archives and Records Management\n- UNESCO Archives\n- European Union Historical Archives (Florence)\n- League of Nations Archives (Geneva)\n\
|
||||
- NATO Archives\n\n**Related Types**:\n- GovernmentArchive (Q119712417) - National government archives\n- PublicArchive (Q27031009) - Public sector archives\n\n**Dual-Class Pattern**:\nThis class represents the CUSTODIAN type (the archive organization).\nFor the collection type, see `InternationalOrganizationRecordSetType` (rico:RecordSetType).\n\n**Ontological Alignment**:\n- **SKOS**: skos:Concept with skos:broader Q166118 (archive)\n- **Schema.org**: schema:ArchiveOrganization\n- **RiC-O**: rico:CorporateBody (as agent)\n- **CPOV**: Aligns with EU Core Public Organisation Vocabulary\n\n**Multilingual Labels**:\n- de: Archiv einer internationalen Organisation\n- fr: archives d'une organisation internationale\n"
|
||||
slot_usage: {}
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
InternationalOrgFonds:
|
||||
is_a: ArchiveOfInternationalOrganizationRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: InternationalOrgFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchiveOfInternationalOrganization
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: TreatyCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchiveOfInternationalOrganization
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
|
||||
|
|
@ -117,19 +116,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ConferenceRecordSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchiveOfInternationalOrganization
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ default_prefix: hc
|
|||
imports:
|
||||
- ../classes/AgentType
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/custodian_type_broader
|
||||
- ../slots/20260202_matang/has_hypernym
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_policy
|
||||
- ../slots/20260202_matang/has_schema
|
||||
|
|
@ -24,8 +24,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_hyponym
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/preservation_standard
|
||||
- ../slots/20260202_matang/new/record_type
|
||||
- ../slots/20260202_matang/has_standard
|
||||
classes:
|
||||
ArchiveOrganizationType:
|
||||
is_a: CustodianType
|
||||
|
|
@ -85,8 +84,8 @@ classes:
|
|||
- has_hyponym
|
||||
- has_type
|
||||
- has_schema
|
||||
- preservation_standard
|
||||
- record_type
|
||||
- has_standard
|
||||
- has_type
|
||||
- has_score
|
||||
- identified_by
|
||||
slot_usage:
|
||||
|
|
@ -97,7 +96,7 @@ classes:
|
|||
# range: string
|
||||
has_scope:
|
||||
# range: string
|
||||
custodian_type_broader:
|
||||
has_hypernym:
|
||||
range: ArchiveOrganizationType
|
||||
required: false
|
||||
has_type:
|
||||
|
|
@ -128,11 +127,11 @@ classes:
|
|||
has_description: central archive of a country that preserves national government records
|
||||
custodian_type_broader: https://nde.nl/ontology/hc/type/archive/Q166118
|
||||
archive_scope: national
|
||||
record_type:
|
||||
has_type:
|
||||
- government records
|
||||
- legal documents
|
||||
- state correspondence
|
||||
preservation_standard:
|
||||
has_standard:
|
||||
- OAIS
|
||||
- PREMIS
|
||||
- EAD3
|
||||
|
|
@ -148,11 +147,11 @@ classes:
|
|||
has_description: organizational entity that keeps or archives fonds of a company
|
||||
custodian_type_broader: https://nde.nl/ontology/hc/type/archive/Q166118
|
||||
archive_scope: corporate
|
||||
record_type:
|
||||
has_type:
|
||||
- corporate records
|
||||
- financial documents
|
||||
- business correspondence
|
||||
preservation_standard:
|
||||
has_standard:
|
||||
- ISO 15489
|
||||
- MoReq
|
||||
access_policy: restricted
|
||||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ArchivesForBuildingRecords:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: 'Public archives specializing in building records, construction documents,
|
||||
and architectural permits.
|
||||
**Wikidata**: Q136027937
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
BuildingPermitSeries:
|
||||
is_a: ArchivesForBuildingRecordsRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: BuildingPermitSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchivesForBuildingRecords
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ConstructionDocumentCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchivesForBuildingRecords
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ArchivesRegionales:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "Regional archives in France (archives r\xE9gionales), preserving records\nat the regional administrative level.\n\n**Wikidata**: Q2860567\n\n**Geographic Restriction**: France only\n\n**Scope**:\nFrench regional archives preserve:\n- Regional council records and deliberations\n- Regional planning and development documents\n- Economic development agency records\n- Cultural affairs documentation\n- Education and training records (regional level)\n- Environmental and spatial planning documents\n\n**Administrative Context**:\nIn the French archival system:\n- Archives nationales (national level)\n- Archives r\xE9gionales (regional level) \u2190 This type\n- Archives d\xE9partementales (departmental level)\n- Archives communales (municipal level)\n\n**Related Types**:\n- DepartmentalArchives (Q2860456) - Departmental level in France\n- RegionalArchive (Q27032392) - Generic regional archive type\n- PublicArchivesInFrance (Q2421452) - French public archives\n"
|
||||
slot_usage: {}
|
||||
annotations:
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
RegionalAdministrationFonds:
|
||||
is_a: ArchivesRegionalesRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: RegionalAdministrationFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArchivesRegionales
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArchivesRegionales
|
||||
|
|
|
|||
|
|
@ -31,9 +31,9 @@ imports:
|
|||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_measurement_unit
|
||||
- ../slots/20260202_matang/has_value
|
||||
- ../slots/20260202_matang/new/is_estimate
|
||||
- ../slots/20260202_matang/new/measurement_date
|
||||
- ../slots/20260202_matang/new/measurement_method
|
||||
- ../slots/20260202_matang/approximate
|
||||
- ../slots/20260202_matang/has_date
|
||||
- ../slots/20260202_matang/measured_through
|
||||
default_prefix: hc
|
||||
|
||||
classes:
|
||||
|
|
@ -60,8 +60,8 @@ classes:
|
|||
- has_value
|
||||
- has_unit
|
||||
- measurement_date
|
||||
- is_estimate
|
||||
- measurement_method
|
||||
- approximate
|
||||
- measured_through
|
||||
- has_label
|
||||
slot_usage:
|
||||
has_value:
|
||||
|
|
@ -87,13 +87,13 @@ classes:
|
|||
examples:
|
||||
- value: "2024-01-15"
|
||||
- value: "1985-06-01"
|
||||
is_estimate:
|
||||
approximate:
|
||||
range: boolean
|
||||
required: false
|
||||
examples:
|
||||
- value: true
|
||||
- value: false
|
||||
measurement_method:
|
||||
measured_through:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ArtArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "Specialized archive preserving documentation related to art, artists,\nart movements, galleries, and the art market.\n\n**Wikidata**: Q27032254\n\n**Scope**:\nArt archives (Kunstarchive) preserve:\n- Artist papers and correspondence\n- Gallery and dealer records\n- Exhibition documentation (catalogs, invitations, reviews)\n- Art criticism and publications\n- Photographs of artworks and installations\n- Auction house records\n- Art movement manifestos and ephemera\n- Studio and workshop documentation\n\n**Collection Types**:\n- Personal papers of artists\n- Institutional records of art organizations\n- Documentation of art historical events\n- Provenance research materials\n- Conservation and restoration records\n\n**Related Types**:\n- ArchitecturalArchive (Q121409581) - Architectural documentation\n- PerformingArtsArchive (Q27030945) - Performance-based arts\n- PhotoArchive (Q27032363) - Photographic collections\n\n**Notable Examples**:\n- Archives of American Art (Smithsonian)\n\
|
||||
- Getty Research Institute Special Collections\n- Tate Archive (London)\n- Archiv der Akademie der K\xFCnste (Berlin)\n"
|
||||
slot_usage: {}
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
ArtistPapersCollection:
|
||||
is_a: ArtArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ArtistPapersCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArtArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArtArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: GalleryRecordsFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArtArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArtArchive custodians.
|
||||
|
|
@ -117,19 +116,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ExhibitionDocumentationCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ArtArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ArtArchive custodians.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_url
|
||||
- ../slots/20260202_matang/has_version
|
||||
- ../slots/20260202_matang/new/is_current_version
|
||||
- ../slots/20260202_matang/current
|
||||
- ../slots/20260202_matang/amended_through
|
||||
- ../slots/20260202_matang/archived_in
|
||||
- ../slots/20260202_matang/derive_from
|
||||
|
|
@ -20,12 +20,11 @@ imports:
|
|||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/included_in
|
||||
- ../slots/20260202_matang/signed_at
|
||||
- ../slots/20260202_matang/new/jurisdiction
|
||||
- ../slots/20260202_matang/new/language
|
||||
- ../slots/20260202_matang/new/legal_form
|
||||
- ../slots/20260202_matang/new/notarial_deed_number
|
||||
- ../slots/20260202_matang/new/notary_name
|
||||
- ../slots/20260202_matang/new/notary_office
|
||||
- ../slots/20260202_matang/in_jurisdiction
|
||||
- ../slots/20260202_matang/in_language
|
||||
- ../slots/20260202_matang/has_legal_form
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/signed_by
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/refers_to_legal_status
|
||||
- ../slots/20260202_matang/new/registered_office_clause
|
||||
|
|
@ -73,24 +72,24 @@ classes:
|
|||
- has_status
|
||||
- has_format
|
||||
- has_url
|
||||
- listed_in
|
||||
- included_in
|
||||
- has_description
|
||||
- has_title
|
||||
- has_type
|
||||
- effective_at
|
||||
- signed_at
|
||||
- is_current_version
|
||||
- jurisdiction
|
||||
- language
|
||||
- legal_form
|
||||
- notarial_deed_number
|
||||
- notary_name
|
||||
- notary_office
|
||||
- current
|
||||
- in_jurisdiction
|
||||
- in_language
|
||||
- has_legal_form
|
||||
- identified_by
|
||||
- signed_by
|
||||
- signed_at
|
||||
- refers_to_custodian
|
||||
- refers_to_legal_status
|
||||
- registered_office_clause
|
||||
- requires_articles_at_registration
|
||||
- supersedes_or_superseded
|
||||
- require
|
||||
- supersede
|
||||
- has_score
|
||||
- temporal_extent
|
||||
- has_version
|
||||
|
|
@ -131,17 +130,17 @@ classes:
|
|||
required: false
|
||||
examples:
|
||||
- value: '2024-03-18'
|
||||
notary_name:
|
||||
signed_by:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
- value: mr. J.A. van der Berg
|
||||
notary_office:
|
||||
signed_at:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
- value: Amsterdam
|
||||
notarial_deed_number:
|
||||
identified_by:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -152,7 +151,7 @@ classes:
|
|||
examples:
|
||||
- value: '1'
|
||||
- value: '3'
|
||||
is_current_version:
|
||||
current:
|
||||
range: boolean
|
||||
required: true
|
||||
registered_office_clause:
|
||||
|
|
@ -161,7 +160,7 @@ classes:
|
|||
examples:
|
||||
- value: De stichting heeft haar zetel in de gemeente Amsterdam.
|
||||
- value: '2015-11-12: Amendment to restructure board composition'
|
||||
language:
|
||||
in_language:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -171,12 +170,12 @@ classes:
|
|||
archived_in:
|
||||
range: CustodianArchive
|
||||
required: false
|
||||
listed_in:
|
||||
included_in:
|
||||
range: CustodianCollection
|
||||
required: false
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/collection/rm/institutional-archive
|
||||
requires_articles_at_registration:
|
||||
require:
|
||||
range: boolean
|
||||
required: false
|
||||
examples:
|
||||
|
|
@ -188,10 +187,10 @@ classes:
|
|||
refers_to_custodian:
|
||||
range: Custodian
|
||||
required: true
|
||||
legal_form:
|
||||
has_legal_form:
|
||||
range: LegalForm
|
||||
required: false
|
||||
jurisdiction:
|
||||
in_jurisdiction:
|
||||
# range: string
|
||||
required: false
|
||||
derived_from:
|
||||
|
|
@ -244,12 +243,12 @@ classes:
|
|||
registered_office_clause: De stichting heeft haar zetel in de gemeente Amsterdam.
|
||||
language: nl
|
||||
articles_archival_stage: HERITAGE
|
||||
listed_in: https://nde.nl/ontology/hc/collection/rm/institutional-archive
|
||||
included_in: https://nde.nl/ontology/hc/collection/rm/institutional-archive
|
||||
requires_articles_at_registration: true
|
||||
refers_to_legal_status: https://nde.nl/ontology/hc/legal-status/rm
|
||||
refers_to_custodian: https://nde.nl/ontology/hc/nl-nh-ams-m-rm-q190804
|
||||
legal_form:
|
||||
jurisdiction:
|
||||
has_legal_form:
|
||||
in_jurisdiction:
|
||||
jurisdiction_id: NL
|
||||
jurisdiction_type: NATIONAL
|
||||
- value:
|
||||
|
|
@ -268,7 +267,7 @@ classes:
|
|||
notary_office: Haarlem
|
||||
has_version: '3'
|
||||
is_current_version: true
|
||||
supersedes_or_superseded: https://nde.nl/ontology/hc/articles/nha/v2
|
||||
supersede: https://nde.nl/ontology/hc/articles/nha/v2
|
||||
language: nl
|
||||
articles_archival_stage: ACTIVE
|
||||
requires_articles_at_registration: true
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ prefixes:
|
|||
linkml: https://w3id.org/linkml/
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/parent_society
|
||||
- ../slots/20260202_matang/part_of
|
||||
classes:
|
||||
AssociationArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
|
|
@ -13,7 +13,7 @@ classes:
|
|||
description: "Archive preserving records of associations, societies, clubs, and\nother membership-based organizations.\n\n**Wikidata**: Q27030820\n\n**IMPORTANT: Parent Organization Constraint**\n\nAssociationArchive is an archive that holds records OF an association/society.\nThe parent custodian (the association whose records are archived) should \ntypically be a HeritageSocietyType. Use `parent_society` slot to link to \nthe heritage society that created/owns these archival records.\n\n**Scope**:\nAssociation archives (Verbandsarchive) preserve:\n- Founding documents and bylaws\n- Membership records and registers\n- Meeting minutes and proceedings\n- Correspondence and communications\n- Publications and newsletters\n- Event documentation\n- Financial records\n- Photographs and memorabilia\n\n**Types of Associations**:\n- Professional associations and trade bodies\n- Social and cultural clubs\n- Sports organizations\n- Alumni associations\n- Charitable organizations\n- Advocacy and\
|
||||
\ interest groups\n\n**Parent Organization Link**:\nUse `parent_society` slot to link to the HeritageSocietyType whose \nrecords this archive preserves. The parent society MUST be a heritage \nsociety (S type in GLAMORCUBESFIXPHDNT taxonomy).\n\n**Related Types**:\n- FoundationArchive (Q27030827) - Archives of foundations\n- TradeUnionArchive (Q66604802) - Labor organization archives\n- Vereinsarchiv (Q130758889) - German club/society archives\n- HeritageSocietyType - Parent organization type (whose records are archived)\n"
|
||||
slots:
|
||||
- parent_society
|
||||
- part_of
|
||||
slot_usage: {}
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ default_prefix: hc
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_name
|
||||
- ../slots/20260202_matang/new/publishes_or_published
|
||||
- ../slots/20260202_matang/publish
|
||||
classes:
|
||||
AuctionSaleCatalog:
|
||||
class_uri: schema:PublicationIssue
|
||||
|
|
|
|||
|
|
@ -17,13 +17,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
AudiovisualArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: 'Archive specializing in audio-visual materials including film, video,
|
||||
|
||||
sound recordings, and multimedia content.
|
||||
|
|
@ -87,7 +87,7 @@ classes:
|
|||
|
||||
'
|
||||
slot_usage:
|
||||
hold_or_held_record_set_type:
|
||||
hold_record_set:
|
||||
# range: string
|
||||
|
||||
annotations:
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
AudiovisualRecordingCollection:
|
||||
is_a: AudiovisualArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: AudiovisualRecordingCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: AudiovisualArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by AudiovisualArchive
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: AudiovisualProductionFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: AudiovisualArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by AudiovisualArchive
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/draws_or_drew_opinion
|
||||
- ../slots/20260202_matang/opiniate
|
||||
- ../slots/20260202_matang/conducted_by
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
classes:
|
||||
|
|
@ -19,7 +19,7 @@ classes:
|
|||
description: Audit event.
|
||||
slots:
|
||||
- temporal_extent
|
||||
- draws_or_drew_opinion
|
||||
- opiniate
|
||||
- conducted_by
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ classes:
|
|||
class_uri: hc:Authentication
|
||||
description: Authentication details.
|
||||
slots:
|
||||
- requires_or_required
|
||||
- require
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -10,17 +10,17 @@ imports:
|
|||
- ../slots/20260202_matang/has_status
|
||||
- ../slots/20260202_matang/has_technological_infrastructure
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/is_auxiliary_of_platform
|
||||
- ../slots/20260202_matang/auxiliary_of
|
||||
- ../slots/20260202_matang/archived_at
|
||||
- ../slots/20260202_matang/based_on
|
||||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/linked_data
|
||||
- ../slots/20260202_matang/new/platform_description
|
||||
- ../slots/20260202_matang/new/platform_name
|
||||
- ../slots/20260202_matang/new/platform_purpose
|
||||
- ../slots/20260202_matang/new/platform_url
|
||||
- ../slots/20260202_matang/new/receives_or_received
|
||||
- ../slots/20260202_matang/has_linked_data
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_objective
|
||||
- ../slots/20260202_matang/has_url
|
||||
- ../slots/20260202_matang/receive
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/related_project
|
||||
- ../slots/20260202_matang/new/serves_finding_aid
|
||||
|
|
@ -64,13 +64,13 @@ classes:
|
|||
- has_type
|
||||
- based_on
|
||||
- has_endpoint
|
||||
- receives_or_received
|
||||
- is_auxiliary_of_platform
|
||||
- linked_data
|
||||
- platform_description
|
||||
- platform_name
|
||||
- platform_purpose
|
||||
- platform_url
|
||||
- receive
|
||||
- auxiliary_of
|
||||
- has_linked_data
|
||||
- has_description
|
||||
- has_label
|
||||
- has_objective
|
||||
- has_url
|
||||
- refers_to_custodian
|
||||
- related_project
|
||||
- serves_finding_aid
|
||||
|
|
@ -86,7 +86,7 @@ classes:
|
|||
identifier: true
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/aux-platform/rijksmuseum-rijksstudio
|
||||
platform_name:
|
||||
has_label:
|
||||
# range: string
|
||||
required: true
|
||||
examples:
|
||||
|
|
@ -99,19 +99,19 @@ classes:
|
|||
examples:
|
||||
- value: web_harvest
|
||||
- value: migration
|
||||
platform_url:
|
||||
has_url:
|
||||
range: uri
|
||||
required: true
|
||||
pattern: ^https?://
|
||||
examples:
|
||||
- value: https://www.rijksmuseum.nl/nl/rijksstudio
|
||||
- value: https://data.rijksmuseum.nl/
|
||||
platform_purpose:
|
||||
has_objective:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Personal collection creation and high-res image downloads
|
||||
- value: Interactive exploration of Night Watch research project
|
||||
platform_description:
|
||||
has_description:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Rijksstudio allows users to create personal collections from the Rijksmuseum's digitized artworks, download high-resolution images, and share curated sets with others.
|
||||
|
|
@ -138,7 +138,7 @@ classes:
|
|||
has_version: '4.2'
|
||||
include:
|
||||
- Django REST Framework
|
||||
is_auxiliary_of_platform:
|
||||
auxiliary_of:
|
||||
# range: string # uriorcurie
|
||||
# range: DigitalPlatform
|
||||
required: true
|
||||
|
|
@ -149,7 +149,7 @@ classes:
|
|||
examples:
|
||||
- value: Operation Night Watch
|
||||
- value: 'EU Horizon 2020 Grant #123456'
|
||||
receives_or_received:
|
||||
receive:
|
||||
# range: string # uriorcurie
|
||||
# range: FundingSource
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
|
|
@ -158,7 +158,7 @@ classes:
|
|||
has_label: European Commission Horizon 2020
|
||||
- value:
|
||||
has_label: Mondriaan Fund
|
||||
linked_data:
|
||||
has_linked_data:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
|
|
@ -276,7 +276,7 @@ classes:
|
|||
platform_url: https://www.rijksmuseum.nl/en/stories/operation-night-watch
|
||||
platform_purpose: Interactive exploration of Night Watch research project
|
||||
related_project: Operation Night Watch
|
||||
receives_or_received:
|
||||
receive:
|
||||
has_label: ING Bank
|
||||
is_auxiliary_of_platform: https://nde.nl/ontology/hc/platform/rijksmuseum-website
|
||||
has_status:
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ title: AuxiliaryPlace Class
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../enums/AuxiliaryPlaceTypeEnum
|
||||
- ../slots/20260202_matang/new/country
|
||||
- ../slots/20260202_matang/in_country
|
||||
- ../slots/20260202_matang/has_geographic_subdivision
|
||||
- ../slots/20260202_matang/geometric_extent
|
||||
- ../slots/20260202_matang/identified_by
|
||||
|
|
@ -18,7 +18,7 @@ imports:
|
|||
- ../slots/20260202_matang/location_of
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/postal_code
|
||||
- ../slots/20260202_matang/has_postal_code
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/settlement
|
||||
- ../slots/20260202_matang/new/specialized_place
|
||||
|
|
@ -59,13 +59,13 @@ classes:
|
|||
- identified_by
|
||||
- has_type
|
||||
- located_in
|
||||
- country
|
||||
- in_country
|
||||
- has_location
|
||||
- is_location_of
|
||||
- branch_of
|
||||
- has_description
|
||||
- has_label
|
||||
- postal_code
|
||||
- has_postal_code
|
||||
- refers_to_custodian
|
||||
- settlement
|
||||
- specialized_place
|
||||
|
|
@ -121,7 +121,7 @@ classes:
|
|||
# range: string
|
||||
examples:
|
||||
- value: Off-site storage facility housing overflow collections. Staff access only.
|
||||
postal_code:
|
||||
has_postal_code:
|
||||
# range: string
|
||||
examples:
|
||||
- value: 3824 BK
|
||||
|
|
@ -133,7 +133,7 @@ classes:
|
|||
- value:
|
||||
settlement_name: Amersfoort
|
||||
country: NL
|
||||
country:
|
||||
in_country:
|
||||
range: Country
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/country/NL
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ classes:
|
|||
platform_type: MICROSITE
|
||||
description: Exhibition microsite
|
||||
slots:
|
||||
- platform_name
|
||||
- platform_url
|
||||
- platform_type
|
||||
- has_label
|
||||
- has_url
|
||||
- has_type
|
||||
- relationship
|
||||
|
|
|
|||
|
|
@ -17,17 +17,17 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
BankArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "Archive preserving records of banking institutions, documenting\nfinancial history and banking operations.\n\n**Wikidata**: Q52718263\n\n**Scope**:\nBank archives (Bankarchive) preserve:\n- Corporate governance records (board minutes, reports)\n- Customer records (historical, anonymized)\n- Loan and mortgage documentation\n- Correspondence and contracts\n- Marketing and advertising materials\n- Photographs of buildings, staff, events\n- Publications (annual reports, newsletters)\n- Numismatic collections (banknotes, coins)\n\n**Historical Significance**:\nBank archives document:\n- Economic development and financial history\n- Business and commercial practices\n- Architectural heritage (historic bank buildings)\n- Social history (banking access, community development)\n\n**Related Types**:\n- CompanyArchives (Q10605195) - Corporate archives broadly\n- EconomicArchive (Q27032167) - Economic history focus\n\n**Privacy Considerations**:\nBank archives often have:\n- Extended\
|
||||
\ closure periods for personal data\n- Anonymization requirements\n- Legal retention requirements\n- Sensitive commercial information\n\n**Notable Examples**:\n- HSBC Group Archives (London)\n- Deutsche Bank Historical Archive\n- Rothschild Archive (London)\n- Archives historiques de la Soci\xE9t\xE9 G\xE9n\xE9rale\n"
|
||||
slot_usage:
|
||||
hold_or_held_record_set_type:
|
||||
hold_record_set:
|
||||
# range: string
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
BankingRecordsFonds:
|
||||
is_a: BankArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: BankingRecordsFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: BankArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by BankArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: FinancialTransactionSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: BankArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by BankArchive custodians.
|
||||
|
|
@ -117,19 +116,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CustomerAccountSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: BankArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by BankArchive custodians.
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@ title: Biological and Zoological Custodian Type Classification
|
|||
imports:
|
||||
- ../classes/AgentType
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/conservation_breeding
|
||||
- ../slots/20260202_matang/offer_program
|
||||
- ../slots/20260202_matang/has_hyponym
|
||||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/living_collection
|
||||
- ../slots/20260202_matang/has_living_specimen
|
||||
- ../slots/20260202_matang/new/research_program
|
||||
- ../slots/20260202_matang/new/specimen_type
|
||||
classes:
|
||||
|
|
@ -163,9 +163,9 @@ classes:
|
|||
slots:
|
||||
- has_hyponym
|
||||
- has_quantity
|
||||
- conservation_breeding
|
||||
- offer_program
|
||||
- has_type
|
||||
- living_collection
|
||||
- has_living_specimen
|
||||
- research_program
|
||||
- specimen_type
|
||||
- has_score
|
||||
|
|
@ -185,14 +185,14 @@ classes:
|
|||
- value:
|
||||
has_unit:
|
||||
is_estimate: true
|
||||
living_collection:
|
||||
has_living_specimen:
|
||||
range: boolean
|
||||
required: true
|
||||
research_program:
|
||||
# range: string
|
||||
multivalued: true
|
||||
required: false
|
||||
conservation_breeding:
|
||||
offer_program:
|
||||
# range: string
|
||||
required: false
|
||||
has_type:
|
||||
|
|
|
|||
|
|
@ -32,15 +32,14 @@ imports:
|
|||
- ../slots/20260202_matang/associated_with
|
||||
- ../slots/20260202_matang/identified_through
|
||||
- ../slots/20260202_matang/listed_in
|
||||
- ../slots/20260202_matang/new/is_type_specimen
|
||||
- ../slots/20260202_matang/new/iucn_status
|
||||
- ../slots/20260202_matang/new/legal_provenance_note
|
||||
- ../slots/20260202_matang/new/life_stage
|
||||
- ../slots/20260202_matang/new/part_type
|
||||
- ../slots/20260202_matang/new/preparation_date
|
||||
- ../slots/20260202_matang/new/prepared_by
|
||||
- ../slots/20260202_matang/new/preservation_method
|
||||
- ../slots/20260202_matang/new/preservative_detail
|
||||
- ../slots/20260202_matang/symbolize
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/has_stage
|
||||
- ../slots/20260202_matang/contain
|
||||
- ../slots/20260202_matang/prepared_on
|
||||
- ../slots/20260202_matang/prepared_by
|
||||
- ../slots/20260202_matang/has_method
|
||||
- ../slots/20260202_matang/has_detail
|
||||
- ../slots/20260202_matang/new/sex
|
||||
- ../slots/20260202_matang/new/specimen_count
|
||||
- ../slots/20260202_matang/new/specimen_type
|
||||
|
|
@ -68,7 +67,7 @@ classes:
|
|||
- associated_with
|
||||
- identified_by
|
||||
- listed_in
|
||||
- was_acquired_through
|
||||
- acquired_through
|
||||
- describe
|
||||
- has_place
|
||||
- has_hypernym
|
||||
|
|
@ -77,15 +76,15 @@ classes:
|
|||
- has_type
|
||||
- identified_through
|
||||
- has_habitat
|
||||
- is_type_specimen
|
||||
- iucn_status
|
||||
- legal_provenance_note
|
||||
- life_stage
|
||||
- part_type
|
||||
- preparation_date
|
||||
- symbolize
|
||||
- has_status
|
||||
- has_provenance
|
||||
- has_stage
|
||||
- contain
|
||||
- prepared_on
|
||||
- prepared_by
|
||||
- preservation_method
|
||||
- preservative_detail
|
||||
- has_method
|
||||
- has_detail
|
||||
- sex
|
||||
- specimen_count
|
||||
- specimen_type
|
||||
|
|
@ -195,7 +194,7 @@ classes:
|
|||
examples:
|
||||
- value: HOLOTYPE
|
||||
- value: PARATYPE
|
||||
is_type_specimen:
|
||||
symbolize:
|
||||
required: false
|
||||
range: boolean
|
||||
examples:
|
||||
|
|
@ -213,14 +212,14 @@ classes:
|
|||
- value: MALE
|
||||
- value: FEMALE
|
||||
- value: UNKNOWN
|
||||
life_stage:
|
||||
has_stage:
|
||||
required: false
|
||||
# range: string
|
||||
examples:
|
||||
- value: ADULT
|
||||
- value: LARVA
|
||||
- value: FLOWERING
|
||||
part_type:
|
||||
contain:
|
||||
required: false
|
||||
# range: string
|
||||
multivalued: true
|
||||
|
|
@ -234,7 +233,7 @@ classes:
|
|||
examples:
|
||||
- value: 1
|
||||
- value: 50
|
||||
preservation_method:
|
||||
has_method:
|
||||
required: false
|
||||
range: PreservationMethodEnum
|
||||
examples:
|
||||
|
|
@ -242,14 +241,14 @@ classes:
|
|||
- value: FLUID_ETHANOL
|
||||
- value: DRIED_PRESSED
|
||||
- value: FROZEN_TISSUE
|
||||
preservative_detail:
|
||||
has_detail:
|
||||
required: false
|
||||
# range: string
|
||||
examples:
|
||||
- value: 70% ethanol
|
||||
- value: Formalin-fixed, ethanol-transferred
|
||||
- value: "Silica gel dried, stored at -20\xB0C"
|
||||
preparation_date:
|
||||
prepared_on:
|
||||
required: false
|
||||
range: date
|
||||
examples:
|
||||
|
|
@ -260,7 +259,7 @@ classes:
|
|||
examples:
|
||||
- value: Natural History Museum Preparation Lab
|
||||
- value: J. van der Berg
|
||||
was_acquired_through:
|
||||
acquired_through:
|
||||
required: false
|
||||
range: Acquisition
|
||||
inlined: true
|
||||
|
|
@ -321,7 +320,7 @@ classes:
|
|||
- value:
|
||||
has_label: Cervus elaphus
|
||||
description: parasite of:Cervus elaphus
|
||||
iucn_status:
|
||||
has_status:
|
||||
required: false
|
||||
# range: string
|
||||
examples:
|
||||
|
|
@ -338,7 +337,7 @@ classes:
|
|||
- value:
|
||||
has_type: NOT_LISTED
|
||||
has_label: Not regulated under CITES
|
||||
legal_provenance_note:
|
||||
has_provenance:
|
||||
required: false
|
||||
# range: string
|
||||
examples:
|
||||
|
|
@ -370,11 +369,11 @@ classes:
|
|||
has_type: CommonName
|
||||
has_language: nl
|
||||
has_rank: SPECIES
|
||||
part_type:
|
||||
contain:
|
||||
- HEAD
|
||||
- FOOT
|
||||
preservation_method: DRIED_WHOLE
|
||||
was_acquired_through:
|
||||
acquired_through:
|
||||
- acquisition_method: FIELD_COLLECTION
|
||||
temporal_extent:
|
||||
begin_of_the_begin: '1600-01-01'
|
||||
|
|
@ -399,7 +398,7 @@ classes:
|
|||
has_type: CommonName
|
||||
has_language: en
|
||||
has_rank: SPECIES
|
||||
part_type:
|
||||
contain:
|
||||
- SKELETON
|
||||
preservation_method: FOSSIL_PREPARED
|
||||
describe:
|
||||
|
|
@ -428,11 +427,11 @@ classes:
|
|||
is_type_specimen: true
|
||||
has_status:
|
||||
status_value: Lectotype of Quercus robur L., designated by Schwarz (1936)
|
||||
part_type:
|
||||
contain:
|
||||
- LEAF
|
||||
- FLOWER
|
||||
preservation_method: DRIED_PRESSED
|
||||
was_acquired_through:
|
||||
acquired_through:
|
||||
- acquisition_method: FIELD_COLLECTION
|
||||
temporal_extent:
|
||||
begin_of_the_begin: '1750-01-01'
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_reference
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/inference_provenance
|
||||
- ../slots/20260202_matang/new/is_inferred
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/inferred_by
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
|
|
@ -34,8 +34,8 @@ classes:
|
|||
- pico:PersonObservation
|
||||
slots:
|
||||
- has_reference
|
||||
- is_inferred
|
||||
- inference_provenance
|
||||
- inferred_by
|
||||
- has_provenance
|
||||
- generated_by
|
||||
- has_score
|
||||
- temporal_extent
|
||||
|
|
@ -51,11 +51,11 @@ classes:
|
|||
source_type: parish_register
|
||||
- value:
|
||||
source_type: biography
|
||||
is_inferred:
|
||||
inferred_by:
|
||||
range: boolean
|
||||
required: false
|
||||
ifabsent: 'false'
|
||||
inference_provenance:
|
||||
has_provenance:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -17,13 +17,13 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/new/coordinates
|
||||
- ../slots/20260202_matang/new/country_code
|
||||
- ../slots/20260202_matang/has_coordinates
|
||||
- ../slots/20260202_matang/in_country
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/modern_place_name
|
||||
- ../slots/20260202_matang/new/place_name
|
||||
- ../slots/20260202_matang/new/place_source_text
|
||||
- ../slots/20260202_matang/has_name
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_source
|
||||
- ../slots/20260202_matang/new/region_code
|
||||
default_prefix: hc
|
||||
classes:
|
||||
|
|
@ -37,27 +37,27 @@ classes:
|
|||
- crm:E53_Place
|
||||
- gn:Feature
|
||||
slots:
|
||||
- place_name
|
||||
- modern_place_name
|
||||
- country_code
|
||||
- has_label
|
||||
- has_name
|
||||
- in_country
|
||||
- region_code
|
||||
- identified_by
|
||||
- coordinates
|
||||
- place_source_text
|
||||
- has_coordinates
|
||||
- has_source
|
||||
- has_score
|
||||
slot_usage:
|
||||
place_name:
|
||||
has_label:
|
||||
# range: string
|
||||
required: true
|
||||
examples:
|
||||
- value: Amsterdam
|
||||
- value: Batavia
|
||||
modern_place_name:
|
||||
has_name:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
- value: Jakarta
|
||||
country_code:
|
||||
in_country:
|
||||
# range: string
|
||||
required: false
|
||||
pattern: ^[A-Z]{2}$
|
||||
|
|
@ -75,12 +75,12 @@ classes:
|
|||
required: false
|
||||
examples:
|
||||
- value:
|
||||
coordinates:
|
||||
has_coordinates:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
- value: 52.3676,4.9041
|
||||
place_source_text:
|
||||
has_source:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ description: 'A storage box number or position identifier on a shelf.
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/numeric_value
|
||||
- ../slots/20260202_matang/has_numeric_value
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
hc: https://nde.nl/ontology/hc/
|
||||
|
|
@ -34,10 +34,10 @@ classes:
|
|||
related_mappings:
|
||||
- schema:identifier
|
||||
slots:
|
||||
- numeric_value
|
||||
- has_numeric_value
|
||||
- has_score
|
||||
slot_usage:
|
||||
numeric_value:
|
||||
has_numeric_value:
|
||||
required: true
|
||||
minimum_value: 1
|
||||
comments:
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@ imports:
|
|||
- ../slots/20260202_matang/has_service_area
|
||||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/is_public_facing
|
||||
- ../slots/20260202_matang/new/operating_hour
|
||||
- ../slots/20260202_matang/face_public
|
||||
- ../slots/20260202_matang/has_operating_hours
|
||||
- ../slots/20260202_matang/new/services_offered
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
|
|
@ -46,8 +46,8 @@ classes:
|
|||
- has_label
|
||||
- has_service_area
|
||||
- has_quantity
|
||||
- is_public_facing
|
||||
- operating_hour
|
||||
- face_public
|
||||
- has_opening_hour
|
||||
- services_offered
|
||||
- has_score
|
||||
- derived_from
|
||||
|
|
@ -79,7 +79,7 @@ classes:
|
|||
service_area_id: https://nde.nl/ontology/hc/servicearea/zaanstreek-waterland
|
||||
service_area_name: Zaanstreek-Waterland region
|
||||
service_area_type: REGIONAL
|
||||
is_public_facing:
|
||||
face_public:
|
||||
range: boolean
|
||||
required: true
|
||||
ifabsent: 'true'
|
||||
|
|
@ -92,7 +92,7 @@ classes:
|
|||
- value: Archival research access
|
||||
- value: Genealogical consultations
|
||||
- value: Local history reference
|
||||
operating_hour:
|
||||
has_opening_hour:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Tu-Th 09:00-17:00
|
||||
|
|
|
|||
|
|
@ -15,18 +15,16 @@ imports:
|
|||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/has_measurement_unit
|
||||
- ../slots/20260202_matang/include
|
||||
- ../slots/20260202_matang/new/innovation_budget
|
||||
- ../slots/20260202_matang/new/internal_funding
|
||||
- ../slots/20260202_matang/has_budget
|
||||
- ../slots/20260202_matang/funded_by
|
||||
- ../slots/20260202_matang/approved_by
|
||||
- ../slots/20260202_matang/approved_on
|
||||
- ../slots/20260202_matang/based_on
|
||||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/documented_by
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/managing_unit
|
||||
- ../slots/20260202_matang/new/operating_budget
|
||||
- ../slots/20260202_matang/new/personnel_budget
|
||||
- ../slots/20260202_matang/new/preservation_budget
|
||||
- ../slots/20260202_matang/has_operational_unit
|
||||
- ../slots/20260202_matang/has_section
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/revision_date
|
||||
- ../slots/20260202_matang/new/revision_number
|
||||
|
|
@ -69,12 +67,12 @@ classes:
|
|||
- has_endowment_draw
|
||||
- include
|
||||
- temporal_extent
|
||||
- innovation_budget
|
||||
- internal_funding
|
||||
- managing_unit
|
||||
- operating_budget
|
||||
- personnel_budget
|
||||
- preservation_budget
|
||||
- has_budget
|
||||
- funded_by
|
||||
- has_operational_unit
|
||||
- has_budget
|
||||
- has_section
|
||||
- has_budget
|
||||
- refers_to_custodian
|
||||
- revision_date
|
||||
- revision_number
|
||||
|
|
@ -138,7 +136,7 @@ classes:
|
|||
currency_code: USD
|
||||
has_label: US Dollar
|
||||
currency_symbol: $
|
||||
operating_budget:
|
||||
has_budget:
|
||||
range: decimal
|
||||
required: false
|
||||
has_main_part:
|
||||
|
|
@ -150,10 +148,10 @@ classes:
|
|||
has_quantity:
|
||||
part_type: capital_budget
|
||||
currency_code: EUR
|
||||
personnel_budget:
|
||||
has_section:
|
||||
range: decimal
|
||||
required: false
|
||||
preservation_budget:
|
||||
has_budget:
|
||||
range: decimal
|
||||
required: false
|
||||
allocate:
|
||||
|
|
@ -162,14 +160,14 @@ classes:
|
|||
required: false
|
||||
multivalued: true
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
innovation_budget:
|
||||
has_budget:
|
||||
range: decimal
|
||||
required: false
|
||||
include:
|
||||
# range: string
|
||||
multivalued: true
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
internal_funding:
|
||||
funded_by:
|
||||
range: decimal
|
||||
required: false
|
||||
has_endowment_draw:
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_budget # was: total_budget
|
||||
- ../slots/20260202_matang/has_description # was: call_description
|
||||
- ../slots/20260202_matang/fund # was: funded_project
|
||||
- ../slots/identified_by # was: call_id, call_identifier
|
||||
- ../slots/20260202_matang/identified_by # was: call_id, call_identifier
|
||||
- ../slots/20260202_matang/has_label # was: call_short_name, call_title
|
||||
- ../slots/20260202_matang/has_provenance # was: web_observation
|
||||
- ../slots/20260202_matang/has_range
|
||||
|
|
@ -27,17 +27,16 @@ imports:
|
|||
- ../slots/20260202_matang/has_score # was: template_specificity
|
||||
- ../slots/20260202_matang/has_status # was: call_status
|
||||
- ../slots/20260202_matang/has_url # was: call_url
|
||||
- ../slots/20260202_matang/new/info_session_date
|
||||
- ../slots/20260202_matang/hold_session
|
||||
- ../slots/20260202_matang/categorized_as # was: thematic_area
|
||||
- ../slots/20260202_matang/due_on
|
||||
- ../slots/20260202_matang/initiate_on
|
||||
- ../slots/20260202_matang/new/issuing_organisation
|
||||
- ../slots/20260202_matang/new/keyword
|
||||
- ../slots/20260202_matang/new/minimum_partner
|
||||
- ../slots/offers_or_offered # was: funding_rate
|
||||
- ../slots/20260202_matang/new/parent_programme
|
||||
- ../slots/20260202_matang/published_by
|
||||
- ../slots/20260202_matang/has_keyword
|
||||
- ../slots/20260202_matang/minimum_of_minimum
|
||||
- ../slots/20260202_matang/offer # was: funding_rate
|
||||
- ../slots/20260202_matang/part_of
|
||||
- ../slots/20260202_matang/new/related_call
|
||||
- ../slots/requires_or_required # was: co_funding_required
|
||||
- ../slots/20260202_matang/new/results_expected_date
|
||||
- ../slots/20260202_matang/new/start_of_the_start
|
||||
- ./WebObservation
|
||||
|
|
@ -65,7 +64,7 @@ classes:
|
|||
slot_usage:
|
||||
due_on:
|
||||
range: TimeSpan
|
||||
offers_or_offered: # was: funding_rate - migrated per Rule 53 (2026-01-26)
|
||||
offer: # was: funding_rate - migrated per Rule 53 (2026-01-26)
|
||||
range: FundingRate
|
||||
multivalued: true
|
||||
inlined: true
|
||||
|
|
@ -94,7 +93,7 @@ classes:
|
|||
currency_symbol: €
|
||||
fiscal_year_start: '2025-01-01'
|
||||
fiscal_year_end: '2025-12-31'
|
||||
issuing_organisation:
|
||||
published_by:
|
||||
required: true
|
||||
# range: string # uriorcurie
|
||||
examples:
|
||||
|
|
@ -119,7 +118,7 @@ classes:
|
|||
inlined_as_list: false # Fixed invalid inline for primitive type
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/project/nde/heritage-digitization-2025
|
||||
requires_or_required: # was: co_funding_required - migrated per Rule 53 (2026-01-19)
|
||||
require: # was: co_funding_required - migrated per Rule 53 (2026-01-19)
|
||||
range: CoFunding
|
||||
multivalued: false
|
||||
inlined: true
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
CantonalArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "State archives of one of the cantons of Switzerland, preserving cantonal\ngovernment records and historical documentation.\n\n**Wikidata**: Q2860410\n\n**Geographic Restriction**: Switzerland only\n\nThis type is ONLY valid for Swiss cantonal archives. The `applicable_countries`\nslot MUST contain \"CH\". Validation rules enforce this geographic constraint.\n\n**Scope**:\nCantonal archives (Kantonsarchive) preserve:\n- Cantonal government records (Grosser Rat, Regierungsrat)\n- Administrative and judicial records\n- Land registers and cadastral records\n- Civil registry records (historical)\n- Notarial archives\n- Private deposits (families, businesses, associations)\n- Photographs and audiovisual materials\n\n**Swiss Archival System**:\nSwitzerland has a federated archival structure:\n- Schweizerisches Bundesarchiv (federal level)\n- Kantonsarchive (26 cantonal archives) \u2190 This type\n- Gemeindearchive (municipal archives)\n- Burgergemeindearchive (civic community\
|
||||
\ archives)\n\n**Language Considerations**:\nSwiss cantonal archives serve multilingual populations:\n- German-speaking cantons (majority)\n- French-speaking cantons (Romandie)\n- Italian-speaking canton (Ticino)\n- Romansh-speaking areas (Graub\xFCnden)\n\n**Related Types**:\n- StateArchives (Q52341833) - Generic state-level archives\n- RegionalArchive (Q27032392) - Regional scope archives\n- MunicipalArchive (Q604177) - Local government archives\n\n**Notable Examples**:\n- Staatsarchiv Z\xFCrich\n- Archives cantonales vaudoises\n- Staatsarchiv Basel-Stadt\n- Archivio di Stato del Cantone Ticino\n"
|
||||
slot_usage: {}
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
CantonalGovernmentFonds:
|
||||
is_a: CantonalArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CantonalGovernmentFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CantonalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CantonalArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CantonalLegislationCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CantonalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CantonalArchive custodians.
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/is_estimate
|
||||
- ../slots/20260202_matang/approximate
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
default_prefix: hc
|
||||
classes:
|
||||
|
|
@ -42,7 +42,7 @@ classes:
|
|||
- has_unit
|
||||
- has_description
|
||||
- temporal_extent
|
||||
- is_estimate
|
||||
- approximate
|
||||
- has_score
|
||||
slot_usage:
|
||||
identified_by:
|
||||
|
|
@ -98,7 +98,7 @@ classes:
|
|||
- value:
|
||||
begin_of_the_begin: '2020-01-01T00:00:00Z'
|
||||
end_of_the_end: '2030-12-31T23:59:59Z'
|
||||
is_estimate:
|
||||
approximate:
|
||||
range: boolean
|
||||
required: false
|
||||
ifabsent: 'false'
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/new/language
|
||||
- ../slots/20260202_matang/in_language
|
||||
default_prefix: hc
|
||||
classes:
|
||||
Caption:
|
||||
|
|
@ -27,13 +27,13 @@ classes:
|
|||
- schema:caption
|
||||
slots:
|
||||
- has_label
|
||||
- language
|
||||
- in_language
|
||||
slot_usage:
|
||||
has_label:
|
||||
# range: string
|
||||
required: false
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
language:
|
||||
in_language:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -38,4 +38,4 @@ classes:
|
|||
specificity_rationale: Generic utility class/slot created during migration
|
||||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- location
|
||||
- located_at
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ name: catering_place_class
|
|||
title: CateringPlace Class
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/cuisine_type
|
||||
- ../slots/20260202_matang/has_cuisine
|
||||
- ../slots/20260202_matang/has_accessibility_feature
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
|
|
@ -16,10 +16,9 @@ imports:
|
|||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/founded_through
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/michelin_star
|
||||
- ../slots/20260202_matang/new/opening_hour
|
||||
- ../slots/20260202_matang/new/operator
|
||||
- ../slots/20260202_matang/new/outdoor_seating_capacity
|
||||
- ../slots/20260202_matang/has_operating_hours
|
||||
- ../slots/20260202_matang/operated_by
|
||||
- ../slots/20260202_matang/has_capacity
|
||||
- ../slots/20260202_matang/require
|
||||
- ../slots/20260202_matang/new/seating_capacity
|
||||
- ../slots/20260202_matang/new/serves_staff
|
||||
|
|
@ -58,15 +57,15 @@ classes:
|
|||
- has_label
|
||||
- has_price
|
||||
- has_type
|
||||
- cuisine_type
|
||||
- has_cuisine
|
||||
- founded_through
|
||||
- has_service
|
||||
- classified_as
|
||||
- michelin_star
|
||||
- opening_hour
|
||||
- operator
|
||||
- outdoor_seating_capacity
|
||||
- reservation_required
|
||||
- has_score
|
||||
- has_opening_hour
|
||||
- operated_by
|
||||
- has_capacity
|
||||
- require
|
||||
- seating_capacity
|
||||
- serves_staff
|
||||
- serves_visitors_only
|
||||
|
|
@ -112,7 +111,7 @@ classes:
|
|||
examples:
|
||||
- value:
|
||||
has_label: HISTORIC_RESTAURANT
|
||||
cuisine_type:
|
||||
has_cuisine:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Modern Dutch fine dining
|
||||
|
|
@ -126,11 +125,11 @@ classes:
|
|||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
outdoor_seating_capacity:
|
||||
has_capacity:
|
||||
range: integer
|
||||
examples:
|
||||
- value: 40
|
||||
opening_hour:
|
||||
has_opening_hour:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Tu-Su 10:00-17:00
|
||||
|
|
@ -144,11 +143,11 @@ classes:
|
|||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
reservation_required:
|
||||
require:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
michelin_star:
|
||||
has_score:
|
||||
range: integer
|
||||
minimum_value: 1
|
||||
maximum_value: 3
|
||||
|
|
@ -177,7 +176,7 @@ classes:
|
|||
examples:
|
||||
- value: Wheelchair accessible
|
||||
- value: Accessible restrooms
|
||||
operator:
|
||||
operated_by:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Vermaat Groep
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
CathedralArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: 'Archive of a cathedral, preserving records of the cathedral chapter,
|
||||
liturgical documentation, and ecclesiastical administration.
|
||||
**Wikidata**: Q132201761
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
ChapterRecordsFonds:
|
||||
is_a: CathedralArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ChapterRecordsFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CathedralArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CathedralArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: LiturgicalDocumentCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CathedralArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CathedralArchive custodians.
|
||||
|
|
@ -117,19 +116,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: FabricRecordsSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CathedralArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CathedralArchive custodians.
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_note
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/level_value
|
||||
- ../slots/20260202_matang/has_level
|
||||
classes:
|
||||
CertaintyLevel:
|
||||
class_uri: rico:ConfidenceLevel
|
||||
|
|
@ -58,12 +58,12 @@ classes:
|
|||
- prov:qualifiedAssociation
|
||||
|
||||
slots:
|
||||
- level_value
|
||||
- has_level
|
||||
- has_note
|
||||
- has_score
|
||||
|
||||
slot_usage:
|
||||
level_value:
|
||||
has_level:
|
||||
# range: string
|
||||
required: true
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@ prefixes:
|
|||
xsd: http://www.w3.org/2001/XMLSchema#
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/name
|
||||
- ../slots/20260202_matang/new/date
|
||||
- ../slots/20260202_matang/has_name
|
||||
- ../slots/20260202_matang/has_date
|
||||
# default_range: string
|
||||
classes:
|
||||
CertificationEntry:
|
||||
|
|
@ -32,5 +32,5 @@ classes:
|
|||
specificity_rationale: Generic utility class/slot created during migration
|
||||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- name
|
||||
- date_value
|
||||
- has_name
|
||||
- has_timestamp
|
||||
|
|
|
|||
|
|
@ -30,4 +30,4 @@ classes:
|
|||
specificity_rationale: Generic utility class/slot created during migration
|
||||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- model
|
||||
- generated_by
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ChurchArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
|
|
@ -85,10 +85,10 @@ classes:
|
|||
'
|
||||
slots:
|
||||
- identified_by
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
slot_usage:
|
||||
identified_by: null
|
||||
hold_or_held_record_set_type:
|
||||
hold_record_set:
|
||||
equals_expression: '["hc:ChurchGovernanceFonds", "hc:ParishRegisterSeries", "hc:PastoralCorrespondenceCollection", "hc:ChurchPropertyFonds", "hc:CongregationalLifeCollection"]
|
||||
|
||||
'
|
||||
|
|
|
|||
|
|
@ -15,9 +15,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/legal_note
|
||||
- ../slots/20260202_matang/has_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_scope
|
||||
classes:
|
||||
ChurchGovernanceFonds:
|
||||
|
|
@ -75,26 +73,26 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ChurchGovernanceFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the fonds
|
||||
principle. Governance records form the core archival fonds of church archives.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["synod minutes", "consistory records", "church council decisions",
|
||||
"visitation records", "membership rolls"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["parish registers", "property records", "congregational societies"]'
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
|
|
@ -170,27 +168,27 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ParishRegisterSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: 'This RecordSetType classifies record sets following the series
|
||||
principle. Registers arranged chronologically by event type (DTB: doop,
|
||||
trouw, begraven).'
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["baptism records", "marriage records", "burial records",
|
||||
"confirmation records", "membership transfers"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["church governance", "property records", "correspondence"]'
|
||||
PastoralCorrespondenceCollection:
|
||||
is_a: ChurchArchiveRecordSetType
|
||||
|
|
@ -252,31 +250,31 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType",
|
||||
"hc:LibraryType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: PastoralCorrespondenceCollection
|
||||
organizational_principle:
|
||||
equals_string: mixed
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType may follow mixed organizational principles.
|
||||
Includes both organic correspondence series from church administration and
|
||||
personal papers of individual clergy members acquired as donations.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["clergy correspondence", "sermon manuscripts", "visitation
|
||||
reports", "pastoral notes"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["parish registers", "governance records", "property records"]'
|
||||
privacy_note:
|
||||
has_note:
|
||||
equals_string: Pastoral correspondence may contain sensitive personal information. Access
|
||||
restrictions may apply, especially for recent records. Seal of confession
|
||||
(biechtgeheim) protects certain communications.
|
||||
|
|
@ -333,32 +331,32 @@ classes:
|
|||
slots:
|
||||
- has_type
|
||||
- has_score
|
||||
- legal_note
|
||||
- has_note
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ChurchPropertyFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the fonds
|
||||
principle. Property administration forms a distinct archival fonds, often
|
||||
managed separately from governance records.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["property deeds", "building records", "financial accounts",
|
||||
"endowments", "cemetery records"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["parish registers", "governance records", "clergy correspondence"]'
|
||||
legal_note:
|
||||
has_note:
|
||||
equals_string: Property records may retain legal significance for ownership,
|
||||
restoration projects, and monument designation. Original documents often
|
||||
retained for legal purposes.
|
||||
|
|
@ -422,27 +420,27 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType",
|
||||
"hc:HeritageSocietyType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CongregationalLifeCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the collection
|
||||
principle as defined by rico-rst:Collection. Typically includes assembled
|
||||
collections organized by society or activity type. Documentation value
|
||||
prioritized for ephemera and visual materials.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["society records", "sunday school records", "photographs",
|
||||
"publications", "mission records", "diaconal records"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["parish registers", "governance records", "property records"]'
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ChurchArchiveSweden:
|
||||
is_a: ChurchArchive
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "Swedish church archives (kyrkoarkiv) preserving parish records and\nchurch books specific to the Swedish ecclesiastical system.\n\n**Wikidata**: Q64166606\n\n**Parent Class**: ChurchArchive (Q2877653)\n\n**Geographic Restriction**: Sweden (SE) only.\nThis constraint is enforced via LinkML `rules` with `postconditions`.\n\n**Scope**:\nSwedish church archives preserve:\n- Kyrkob\xF6cker (church books) - vital records\n- Husf\xF6rh\xF6rsl\xE4ngder (household examination rolls)\n- In- och utflyttningsl\xE4ngder (migration records)\n- F\xF6delse-, vigsel-, och d\xF6dsb\xF6cker (birth, marriage, death)\n- F\xF6rsamlingsb\xF6cker (congregation records)\n- Communion records\n\n**Historical Context**:\nSwedish church archives are notable because:\n- Church of Sweden kept civil registration until 1991\n- Records extend back to 1600s in many parishes\n- Household examination records are unique to Sweden\n- Comprehensive coverage of entire population\n\n**Genealogical Significance**:\n\
|
||||
Among the world's most valuable genealogical sources:\n- Near-complete population records from 17th century\n- Annual household examinations recorded literacy, movement\n- Detailed migration records between parishes\n- Now largely digitized through Arkiv Digital, Riksarkivet\n\n**Related Types**:\n- ChurchArchive (Q2877653) - General church archives (parent class)\n- ParishArchive (Q34544468) - Local parish records\n- Personenstandsarchiv (Q2072394) - German civil registration\n"
|
||||
slot_usage: {}
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
SwedishParishRecordSeries:
|
||||
is_a: ChurchArchiveSwedenRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: SwedishParishRecordSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ChurchArchiveSweden
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ChurchArchiveSweden
|
||||
|
|
@ -83,19 +82,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: SwedishChurchPropertyFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ChurchArchiveSweden
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ChurchArchiveSweden
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ClimateArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: 'Archive that provides information about climatic conditions in the past,
|
||||
preserving paleoclimate data and historical climate records.
|
||||
**Wikidata**: Q1676725
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
ClimateDataCollection:
|
||||
is_a: ClimateArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ClimateDataCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ClimateArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ClimateArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: MeteorologicalObservationSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ClimateArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ClimateArchive custodians.
|
||||
|
|
|
|||
|
|
@ -8,14 +8,14 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
CollectingArchives:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- has_type
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
- has_score
|
||||
description: 'Archive that actively collects materials from multiple external sources
|
||||
rather than preserving records of its own parent organization.
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
CollectedMaterialsFonds:
|
||||
is_a: CollectingArchivesRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CollectedMaterialsFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CollectingArchives
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CollectingArchives
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: DonatedPapersCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CollectingArchives
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CollectingArchives
|
||||
|
|
|
|||
|
|
@ -17,13 +17,12 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/custodial_history
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/has_content
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_policy
|
||||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
|
|
@ -31,9 +30,7 @@ imports:
|
|||
- ../slots/20260202_matang/categorized_as
|
||||
- ../slots/20260202_matang/instantiated_by
|
||||
- ../slots/20260202_matang/part_of
|
||||
- ../slots/20260202_matang/new/item
|
||||
- ../slots/20260202_matang/new/part_of_custodian_collection
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_constituent
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
# - ./CurationActivity
|
||||
classes:
|
||||
|
|
@ -56,16 +53,16 @@ classes:
|
|||
- has_description
|
||||
- identified_by
|
||||
- has_label
|
||||
- categorized_as
|
||||
- custodial_history
|
||||
- has_type
|
||||
- has_provenance
|
||||
- has_type
|
||||
- instantiated_by
|
||||
- has_quantity
|
||||
- item
|
||||
- has_constituent
|
||||
- part_of
|
||||
- part_of
|
||||
- part_of_custodian_collection
|
||||
- has_provenance
|
||||
- record_set_type
|
||||
- has_type
|
||||
- has_score
|
||||
- has_content
|
||||
- temporal_extent
|
||||
|
|
@ -102,7 +99,7 @@ classes:
|
|||
- value:
|
||||
description_text: The VOC archives comprise the administrative records of the Dutch East India Company from its founding in 1602 until its dissolution in 1799. The fonds includes correspondence, resolutions, journals, accounts, ship's logs, and maps documenting trade relations across Asia.
|
||||
description_type: collection_description
|
||||
record_set_type:
|
||||
has_type:
|
||||
# range: string # uriorcurie
|
||||
examples:
|
||||
- value: rico:Fonds
|
||||
|
|
@ -120,7 +117,7 @@ classes:
|
|||
temporal_extent:
|
||||
begin_of_the_begin: '1602-01-01'
|
||||
end_of_the_end: '1799-12-31'
|
||||
categorized_as:
|
||||
has_type:
|
||||
# range: string # uriorcurie
|
||||
multivalued: true
|
||||
required: true
|
||||
|
|
@ -135,7 +132,7 @@ classes:
|
|||
has_description:
|
||||
- description_text: The VOC archives were transferred to the Dutch state upon the company's dissolution in 1799. They were initially held by the Ministry of Colonies, then transferred to the Algemeen Rijksarchief (now Nationaal Archief) in 1856.
|
||||
description_type: provenance_statement
|
||||
custodial_history:
|
||||
has_provenance:
|
||||
# range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
|
|
@ -164,14 +161,14 @@ classes:
|
|||
range: Collection
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/collection/nationaal-archief-voc-fonds
|
||||
item:
|
||||
has_constituent:
|
||||
range: ExhibitedObject
|
||||
multivalued: true
|
||||
inlined: false
|
||||
examples:
|
||||
- value:
|
||||
- https://nde.nl/ontology/hc/object/mauritshuis-girl-pearl-earring
|
||||
part_of_custodian_collection:
|
||||
part_of:
|
||||
# range: string # CustodianCollection
|
||||
required: true
|
||||
examples:
|
||||
|
|
@ -209,7 +206,7 @@ classes:
|
|||
description_type: collection_description
|
||||
record_set_type: rico:Fonds
|
||||
has_content:
|
||||
categorized_as:
|
||||
has_type:
|
||||
- https://nde.nl/ontology/hc/collection-type/fonds
|
||||
- Colonial trade
|
||||
- Maritime history
|
||||
|
|
|
|||
|
|
@ -18,9 +18,8 @@ imports:
|
|||
- ../slots/20260202_matang/has_provenance
|
||||
- ../slots/20260202_matang/acquired_by
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
- ../slots/20260202_matang/new/field_number
|
||||
- ../slots/20260202_matang/new/sampling_protocol
|
||||
- ../slots/20260202_matang/new/habitat_description
|
||||
- ../slots/20260202_matang/has_habitat
|
||||
default_prefix: hc
|
||||
classes:
|
||||
CollectionEvent:
|
||||
|
|
@ -43,9 +42,9 @@ classes:
|
|||
- temporal_extent
|
||||
- acquired_by
|
||||
- identified_by
|
||||
- field_number
|
||||
- identified_by
|
||||
- sampling_protocol
|
||||
- habitat_description
|
||||
- has_habitat
|
||||
slot_usage:
|
||||
identified_by:
|
||||
identifier: true
|
||||
|
|
|
|||
|
|
@ -15,11 +15,11 @@ imports:
|
|||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/used_by
|
||||
- ../slots/20260202_matang/new/license
|
||||
- ../slots/20260202_matang/new/linked_data_export
|
||||
- ../slots/20260202_matang/new/manages_collection
|
||||
- ../slots/20260202_matang/new/open_source
|
||||
- ../slots/20260202_matang/new/powers_platform
|
||||
- ../slots/20260202_matang/licensed_as
|
||||
- ../slots/20260202_matang/export
|
||||
- ../slots/20260202_matang/manage
|
||||
- ../slots/20260202_matang/open_source
|
||||
- ../slots/20260202_matang/power
|
||||
- ../slots/20260202_matang/new/refers_to_custodian
|
||||
- ../slots/20260202_matang/new/repository_url
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
|
|
@ -60,11 +60,11 @@ classes:
|
|||
- has_version
|
||||
- has_type
|
||||
- deployed_at
|
||||
- license
|
||||
- linked_data_export
|
||||
- manages_collection
|
||||
- licensed_as
|
||||
- export
|
||||
- manage
|
||||
- open_source
|
||||
- powers_platform
|
||||
- power
|
||||
- refers_to_custodian
|
||||
- repository_url
|
||||
- has_standard
|
||||
|
|
@ -108,7 +108,7 @@ classes:
|
|||
examples:
|
||||
- value: true
|
||||
- value: false
|
||||
license:
|
||||
licensed_as:
|
||||
# range: string
|
||||
examples:
|
||||
- value: GPL-3.0
|
||||
|
|
@ -159,7 +159,7 @@ classes:
|
|||
standard_uri: http://www.lido-schema.org/
|
||||
- value:
|
||||
standard_uri: http://www.loc.gov/ead/
|
||||
linked_data_export:
|
||||
export:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
|
|
@ -167,12 +167,12 @@ classes:
|
|||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
powers_platform:
|
||||
power:
|
||||
range: DigitalPlatform
|
||||
multivalued: true
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/platform/rijksmuseum-website
|
||||
manages_collection:
|
||||
manage:
|
||||
range: CustodianCollection
|
||||
multivalued: true
|
||||
examples:
|
||||
|
|
@ -250,9 +250,9 @@ classes:
|
|||
standard_uri: http://www.lido-schema.org/
|
||||
linked_data_export: true
|
||||
available: true
|
||||
powers_platform:
|
||||
power:
|
||||
- https://nde.nl/ontology/hc/platform/rijksmuseum-website
|
||||
manages_collection:
|
||||
manage:
|
||||
- https://nde.nl/ontology/hc/collection/rm-paintings
|
||||
- https://nde.nl/ontology/hc/collection/rm-prints
|
||||
refers_to_custodian: https://nde.nl/ontology/hc/nl-nh-ams-m-rm-q190804
|
||||
|
|
@ -309,7 +309,7 @@ classes:
|
|||
standard_uri: https://www.nationaalarchief.nl/mdto
|
||||
linked_data_export: false
|
||||
available: true
|
||||
manages_collection:
|
||||
manage:
|
||||
- https://nde.nl/ontology/hc/collection/na-government-records
|
||||
refers_to_custodian: https://nde.nl/ontology/hc/nl-na
|
||||
annotations:
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ imports:
|
|||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/equivalent_to
|
||||
- ../slots/20260202_matang/new/record_equivalent
|
||||
classes:
|
||||
CollectionType:
|
||||
class_uri: rico:RecordSetType
|
||||
|
|
@ -41,7 +40,7 @@ classes:
|
|||
- has_label
|
||||
- has_type
|
||||
- has_domain
|
||||
- record_equivalent
|
||||
- equivalent_to
|
||||
- has_score
|
||||
- equivalent_to
|
||||
slot_usage:
|
||||
|
|
@ -73,7 +72,7 @@ classes:
|
|||
- value:
|
||||
description_text: A fonds is a group of documents of any nature brought together by virtue of being accumulated by the same creator in the exercise of their activities and functions.
|
||||
description_type: collection_type_description
|
||||
record_equivalent:
|
||||
equivalent_to:
|
||||
# range: string # uriorcurie
|
||||
examples:
|
||||
- value: rico:Fonds
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
ComarcalArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: "Archive serving a comarca (county-level administrative district),\nprimarily in Catalonia and other regions of Spain.\n\n**Wikidata**: Q21086734\n\n**Geographic Restriction**: Spain (primarily Catalonia)\n\n**Scope**:\nComarcal archives (arxius comarcals) preserve:\n- Comarca council records\n- Municipal records from constituent towns\n- Notarial protocols\n- Historical documents from the district\n- Photographs and audiovisual materials\n- Local history documentation\n\n**Administrative Context**:\nIn Catalonia's archival system:\n- Arxiu Nacional de Catalunya (national)\n- Arxius Hist\xF2rics Provincials (provincial)\n- Arxius Comarcals (41 comarcal archives) \u2190 This type\n- Arxius Municipals (municipal)\n\n**Services**:\nComarcal archives typically provide:\n- Public access to historical records\n- Genealogical research assistance\n- Local history reference services\n- Document conservation\n- Digitization programs\n\n**Related Types**:\n- MunicipalArchive (Q604177)\
|
||||
\ - City/town archives\n- ProvincialArchive (Q5403345) - Provincial level\n- ProvincialHistoricalArchive (Q21087388) - Provincial historical\n- DistrictArchiveGermany (Q130757255) - German equivalent\n"
|
||||
slot_usage: {}
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
ComarcalAdministrationFonds:
|
||||
is_a: ComarcalArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ComarcalAdministrationFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ComarcalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ComarcalArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ComarcalHistoryCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: ComarcalArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by ComarcalArchive custodians.
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../enums/CommercialCustodianTypeEnum
|
||||
- ../slots/20260202_matang/collect
|
||||
- ../slots/20260202_matang/new/corporate_integration
|
||||
- ../slots/20260202_matang/integrate
|
||||
- ../slots/20260202_matang/has_model
|
||||
- ../slots/20260202_matang/has_rationale
|
||||
- ../slots/20260202_matang/has_score
|
||||
|
|
@ -152,7 +152,7 @@ classes:
|
|||
- has_rationale
|
||||
- has_service
|
||||
- include
|
||||
- corporate_integration
|
||||
- integrate
|
||||
- has_type
|
||||
- has_score
|
||||
slot_usage:
|
||||
|
|
@ -215,7 +215,7 @@ classes:
|
|||
- value:
|
||||
wikidata_qid: wd:Q17537576
|
||||
- value:
|
||||
corporate_integration:
|
||||
integrate:
|
||||
# range: string
|
||||
required: true
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ imports:
|
|||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
classes:
|
||||
CommunityArchive:
|
||||
is_a: ArchiveOrganizationType
|
||||
class_uri: skos:Concept
|
||||
slots:
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
description: 'Archive created and maintained by individuals and community groups
|
||||
to document their own cultural heritage and lived experiences.
|
||||
**Wikidata**: Q25105971
|
||||
|
|
|
|||
|
|
@ -15,9 +15,8 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/record_holder
|
||||
- ../slots/20260202_matang/new/record_holder_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_custodian
|
||||
- ../slots/20260202_matang/has_note
|
||||
classes:
|
||||
CommunityOrganizationFonds:
|
||||
is_a: CommunityArchiveRecordSetType
|
||||
|
|
@ -39,19 +38,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CommunityOrganizationFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CommunityArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CommunityArchive custodians.
|
||||
|
|
@ -80,19 +79,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: OralHistoryCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CommunityArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CommunityArchive custodians.
|
||||
|
|
@ -117,19 +116,19 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_holder
|
||||
- has_custodian
|
||||
- record_holder_note
|
||||
- record_set_type
|
||||
- has_type
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: LocalEventDocumentation
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_holder:
|
||||
has_custodian:
|
||||
equals_string: CommunityArchive
|
||||
record_holder_note:
|
||||
equals_string: This RecordSetType is typically held by CommunityArchive custodians.
|
||||
|
|
|
|||
|
|
@ -16,9 +16,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/legal_note
|
||||
- ../slots/20260202_matang/has_note
|
||||
- ../slots/20260202_matang/new/record_set_type
|
||||
- ../slots/20260202_matang/has_scope
|
||||
classes:
|
||||
CorporateGovernanceFonds:
|
||||
|
|
@ -79,33 +77,33 @@ classes:
|
|||
slots:
|
||||
- has_type
|
||||
- has_score
|
||||
- legal_note
|
||||
- has_note
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CorporateGovernanceFonds
|
||||
organizational_principle:
|
||||
equals_string: fonds
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the fonds
|
||||
principle as defined by rico-rst:Fonds. Governance records form the core
|
||||
archival fonds of company archives.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["board minutes", "shareholder records", "executive records",
|
||||
"M&A records", "corporate bylaws"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["product development", "marketing materials", "personnel
|
||||
records"]'
|
||||
legal_note:
|
||||
has_note:
|
||||
equals_string: Governance records have significant legal value. Many have
|
||||
mandatory retention periods. Original documents often retained for legal
|
||||
purposes.
|
||||
|
|
@ -174,28 +172,28 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType",
|
||||
"hc:ResearchOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: ProductDevelopmentCollection
|
||||
organizational_principle:
|
||||
equals_string: mixed
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType may follow mixed organizational principles.
|
||||
May include both organic R&D fonds and assembled collections organized by
|
||||
product line, technology, or project.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["R&D files", "technical drawings", "patents", "prototypes",
|
||||
"test reports"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["governance records", "marketing materials", "personnel records"]'
|
||||
MarketingArchiveCollection:
|
||||
is_a: CompanyArchiveRecordSetType
|
||||
|
|
@ -256,29 +254,29 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType",
|
||||
"hc:MuseumType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: MarketingArchiveCollection
|
||||
organizational_principle:
|
||||
equals_string: collection
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the collection
|
||||
principle as defined by rico-rst:Collection. Typically assembled collection
|
||||
organized by campaign, product line, or media type. Visual materials often
|
||||
predominate.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["advertising", "brand materials", "packaging", "promotional
|
||||
materials", "market research"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["governance records", "technical documentation", "personnel
|
||||
records"]'
|
||||
PersonnelRecordsSeries:
|
||||
|
|
@ -339,30 +337,30 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- privacy_note
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: PersonnelRecordsSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the series
|
||||
principle as defined by rico-rst:Series. Personnel records typically arranged alphabetically
|
||||
by employee name within date ranges.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["personnel files", "employment contracts", "payroll records",
|
||||
"training records", "works council records"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["governance records", "product development", "marketing materials"]'
|
||||
privacy_note:
|
||||
has_note:
|
||||
equals_string: 'Subject to AVG/GDPR. Access restrictions apply for records
|
||||
less than 75 years old. Typical retention: 7-10 years after employment
|
||||
ends.'
|
||||
|
|
@ -425,27 +423,27 @@ classes:
|
|||
- has_score
|
||||
- organizational_principle
|
||||
- organizational_principle_uri
|
||||
- record_note
|
||||
- record_set_type
|
||||
- scope_exclude
|
||||
- scope_include
|
||||
- has_note
|
||||
- has_type
|
||||
- has_scope
|
||||
- has_scope
|
||||
slot_usage:
|
||||
has_type:
|
||||
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType",
|
||||
"hc:LibraryType"]'
|
||||
record_set_type:
|
||||
has_type:
|
||||
equals_string: CorporatePublicationsSeries
|
||||
organizational_principle:
|
||||
equals_string: series
|
||||
organizational_principle_uri:
|
||||
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
|
||||
record_note:
|
||||
has_note:
|
||||
equals_string: This RecordSetType classifies record sets following the series
|
||||
principle as defined by rico-rst:Series. Publications arranged chronologically
|
||||
by title. May benefit from bibliographic treatment for serial publications.
|
||||
scope_include:
|
||||
has_scope:
|
||||
equals_string: '["annual reports", "house magazines", "newsletters", "commemorative
|
||||
publications", "press releases"]'
|
||||
scope_exclude:
|
||||
has_scope:
|
||||
equals_string: '["governance records", "technical documentation", "personnel
|
||||
records"]'
|
||||
|
|
|
|||
|
|
@ -11,9 +11,9 @@ imports:
|
|||
- ../slots/20260202_matang/has_branch
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_scope
|
||||
- ../slots/20260202_matang/new/hold_or_held_record_set_type
|
||||
- ../slots/20260202_matang/hold_record_set
|
||||
- ../slots/20260202_matang/department_of
|
||||
- ../slots/20260202_matang/new/parent_corporation
|
||||
- ../slots/20260202_matang/part_of
|
||||
classes:
|
||||
CompanyArchives:
|
||||
is_a: ArchiveOrganizationType
|
||||
|
|
@ -22,14 +22,14 @@ classes:
|
|||
\ - Regional archive at manufacturing sites\n - Research archive at R&D centers\n \n3. **Standalone heritage organizations** (rare):\n - Independent foundation managing corporate heritage\n - Heritage society for defunct companies\n\n**Relationship to Parent Organization**:\n\n| Pattern | Property | Example |\n|---------|----------|---------|\n| Archive as department | `schema:department` / `org:hasUnit` | Philips Archive is department of Philips N.V. |\n| Archive as branch | `org:hasSite` / `org:unitOf` | Shell Archive at The Hague HQ |\n| Archive with parent org | `schema:parentOrganization` | Unilever Historical Archives \u2192 Unilever PLC |\n\n**W3C ORG / Schema.org Alignment**:\n- `schema:parentOrganization` - Links archive to the corporation it belongs to\n- `schema:department` - Corporation links to its archive department\n- `org:unitOf` - Archive is organizational unit of corporation\n- `org:hasUnit` - Corporation has archive as organizational unit\n\n**Business\
|
||||
\ Value**:\nCompany archives support:\n- Legal and regulatory compliance\n- Intellectual property protection\n- Corporate identity and branding\n- Historical marketing campaigns\n- Anniversary and commemorative projects\n- Due diligence for mergers and acquisitions\n\n**Related Types**:\n- BankArchive (Q52718263) - Financial institution archives\n- EconomicArchive (Q27032167) - Economic history focus\n- InstitutionalArchive (Q124762372) - Institutional records\n- Department - Formal departmental structure within organization\n- OrganizationBranch - Physical branch locations of archive\n\n**Professional Body**:\nCompany archivists often belong to:\n- International Council on Archives Section for Business Archives\n- Vereinigung deutscher Wirtschaftsarchivare (VdW)\n- Business Archives Council (UK)\n"
|
||||
slots:
|
||||
- parent_corporation
|
||||
- part_of
|
||||
- archive_department_of
|
||||
- has_branch
|
||||
- identified_by
|
||||
- hold_or_held_record_set_type
|
||||
- hold_record_set
|
||||
slot_usage:
|
||||
identified_by: null
|
||||
hold_or_held_record_set_type:
|
||||
hold_record_set:
|
||||
equals_expression: '["hc:CorporateGovernanceFonds", "hc:ProductDevelopmentCollection", "hc:MarketingArchiveCollection", "hc:PersonnelRecordsSeries", "hc:CorporatePublicationsSeries"]
|
||||
|
||||
'
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ classes:
|
|||
- has_type
|
||||
- has_label
|
||||
- has_description
|
||||
- remediation_required
|
||||
- require
|
||||
slot_usage:
|
||||
has_type:
|
||||
# range: string
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/is_rebuilding
|
||||
- ../slots/20260202_matang/rebuild_by
|
||||
- ../slots/20260202_matang/new/reported_date
|
||||
prefixes:
|
||||
linkml: https://w3id.org/linkml/
|
||||
|
|
@ -59,7 +59,7 @@ classes:
|
|||
slots:
|
||||
- has_score
|
||||
- reported_date
|
||||
- is_rebuilding
|
||||
- rebuild_by
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
specificity_rationale: Generic utility class/slot created during migration
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ imports:
|
|||
- ../metadata
|
||||
- ../slots/20260202_matang/has_member
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/network_analysis
|
||||
- ../slots/20260202_matang/based_on
|
||||
- ../slots/20260202_matang/has_note
|
||||
- ../slots/20260202_matang/new/source_metadata
|
||||
# default_range: string
|
||||
|
|
@ -63,7 +63,7 @@ classes:
|
|||
- prov:Collection
|
||||
slots:
|
||||
- has_member
|
||||
- network_analysis
|
||||
- based_on
|
||||
- source_metadata
|
||||
- has_score
|
||||
slot_usage:
|
||||
|
|
@ -77,7 +77,7 @@ classes:
|
|||
multivalued: true
|
||||
inlined: true
|
||||
inlined_as_list: true
|
||||
network_analysis:
|
||||
based_on:
|
||||
range: NetworkAnalysis
|
||||
inlined: true
|
||||
comments:
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ prefixes:
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../enums/ScrapeMethodEnum
|
||||
- ../slots/20260202_matang/new/connections_extracted
|
||||
- ../slots/20260202_matang/document
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_profile
|
||||
- ../slots/20260202_matang/has_score
|
||||
|
|
@ -57,8 +57,8 @@ classes:
|
|||
exact_mappings:
|
||||
- prov:Activity
|
||||
slots:
|
||||
- connections_extracted
|
||||
- note
|
||||
- document
|
||||
- has_note
|
||||
- scrape_method
|
||||
- scraped_timestamp
|
||||
- source_url
|
||||
|
|
@ -101,13 +101,13 @@ classes:
|
|||
social_media_profile_id: https://nde.nl/ontology/hc/social-media/alexandr-belov-linkedin
|
||||
platform_type: LINKEDIN
|
||||
profile_url: https://www.linkedin.com/in/alexandr-belov-bb547b46/
|
||||
connections_extracted:
|
||||
document:
|
||||
range: integer
|
||||
required: true
|
||||
minimum_value: 0
|
||||
examples:
|
||||
- value: 776
|
||||
note:
|
||||
has_note:
|
||||
# range: string
|
||||
examples:
|
||||
- value: Raw scrape in giovannafossati_connections_20251209T220000Z_note-max100p-1st2nd3th.md
|
||||
|
|
|
|||
|
|
@ -4,14 +4,14 @@ title: ConservationLab Class
|
|||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/accept
|
||||
- ../slots/20260202_matang/new/conservation_specialization
|
||||
- ../slots/20260202_matang/expertise_in
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_equipment
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/new/is_accredited
|
||||
- ../slots/20260202_matang/accredited_with
|
||||
- ../slots/20260202_matang/derive_from
|
||||
- ../slots/20260202_matang/generated_by
|
||||
- ../slots/20260202_matang/new/safety_certification
|
||||
|
|
@ -44,9 +44,9 @@ classes:
|
|||
- schema:ResearchOrganization
|
||||
slots:
|
||||
- accept
|
||||
- conservation_specialization
|
||||
- expertise_in
|
||||
- has_equipment
|
||||
- is_accredited
|
||||
- accredited_with
|
||||
- identified_by
|
||||
- has_label
|
||||
- has_description
|
||||
|
|
@ -79,7 +79,7 @@ classes:
|
|||
examples:
|
||||
- value:
|
||||
description_text: State-of-the-art conservation studio specializing in 17th-century Dutch paintings. Features advanced imaging suite for technical art history research.
|
||||
conservation_specialization:
|
||||
expertise_in:
|
||||
# range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
|
|
@ -106,7 +106,7 @@ classes:
|
|||
multivalued: true
|
||||
examples:
|
||||
- value: ISO 45001 Occupational Health and Safety
|
||||
is_accredited:
|
||||
accredited_with:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
|
|
@ -144,7 +144,7 @@ classes:
|
|||
label_text: Rijksmuseum Conservation Studio
|
||||
has_description:
|
||||
description_text: State-of-the-art conservation studio specializing in Dutch Golden Age paintings, works on paper, and decorative arts.
|
||||
conservation_specialization:
|
||||
expertise_in:
|
||||
- Paintings
|
||||
- Works on paper
|
||||
- Furniture
|
||||
|
|
@ -167,7 +167,7 @@ classes:
|
|||
label_text: Nationaal Archief Restauratie Atelier
|
||||
has_description:
|
||||
description_text: Paper and parchment conservation workshop serving the national archives. Specializes in historical documents, maps, and seals.
|
||||
conservation_specialization:
|
||||
expertise_in:
|
||||
- Paper
|
||||
- Parchment
|
||||
- Seals
|
||||
|
|
|
|||
|
|
@ -13,30 +13,29 @@ imports:
|
|||
- linkml:types
|
||||
- ../enums/ConservationStatusEnum
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/new/conservation_lab
|
||||
- ../slots/20260202_matang/new/conservation_note
|
||||
- ../slots/20260202_matang/new/conservator
|
||||
- ../slots/20260202_matang/new/conservator_affiliation
|
||||
- ../slots/20260202_matang/new/cost
|
||||
- ../slots/20260202_matang/new/cost_currency
|
||||
- ../slots/20260202_matang/has_facility
|
||||
- ../slots/20260202_matang/has_note
|
||||
- ../slots/20260202_matang/conserved_by
|
||||
- ../slots/20260202_matang/affiliated_with
|
||||
- ../slots/20260202_matang/has_expense
|
||||
- ../slots/20260202_matang/has_currency
|
||||
- ../slots/20260202_matang/describe
|
||||
- ../slots/20260202_matang/new/final_of_the_final
|
||||
- ../slots/20260202_matang/final_of_the_final
|
||||
- ../slots/20260202_matang/has_condition
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_treatment
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/indicates_or_indicated
|
||||
- ../slots/20260202_matang/new/initial_of_the_initial
|
||||
- ../slots/20260202_matang/new/materials_used
|
||||
- ../slots/20260202_matang/new/object_ref
|
||||
- ../slots/20260202_matang/new/photograph
|
||||
- ../slots/20260202_matang/new/receives_or_received
|
||||
- ../slots/20260202_matang/new/recommendation
|
||||
- ../slots/20260202_matang/new/record_date
|
||||
- ../slots/20260202_matang/new/record_id
|
||||
- ../slots/20260202_matang/new/record_timespan
|
||||
- ../slots/20260202_matang/new/record_type
|
||||
- ../slots/20260202_matang/indicate
|
||||
- ../slots/20260202_matang/initial_of_the_initial
|
||||
- ../slots/20260202_matang/use_material
|
||||
- ../slots/20260202_matang/refer_to
|
||||
- ../slots/20260202_matang/has_url
|
||||
- ../slots/20260202_matang/receive
|
||||
- ../slots/20260202_matang/recommend
|
||||
- ../slots/20260202_matang/has_timestamp
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/temporal_extent
|
||||
- ../slots/20260202_matang/new/related_loan
|
||||
- ../slots/20260202_matang/new/report_document
|
||||
- ../slots/20260202_matang/new/report_url
|
||||
|
|
@ -61,54 +60,54 @@ classes:
|
|||
- initial_of_the_initial
|
||||
- has_condition
|
||||
- conservation_lab
|
||||
- conservation_note
|
||||
- conservator
|
||||
- conservator_affiliation
|
||||
- cost
|
||||
- cost_currency
|
||||
- has_note
|
||||
- conserved_by
|
||||
- affiliated_with
|
||||
- has_expense
|
||||
- has_currency
|
||||
- has_type
|
||||
- indicate
|
||||
- use_material
|
||||
- refer_to
|
||||
- has_url
|
||||
- recommend
|
||||
- has_timestamp
|
||||
- identified_by
|
||||
- temporal_extent
|
||||
- has_type
|
||||
- indicates_or_indicated
|
||||
- materials_used
|
||||
- object_ref
|
||||
- photograph
|
||||
- recommendation
|
||||
- record_date
|
||||
- record_id
|
||||
- record_timespan
|
||||
- record_type
|
||||
- related_loan
|
||||
- report_document
|
||||
- report_url
|
||||
- uses_or_used_technique
|
||||
- use
|
||||
- has_score
|
||||
- has_treatment
|
||||
slot_usage:
|
||||
record_id:
|
||||
identified_by:
|
||||
identifier: true
|
||||
required: true
|
||||
# range: string # uriorcurie
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/conservation/mauritshuis-670-1994-001
|
||||
- value: https://nde.nl/ontology/hc/conservation/rijksmuseum-sk-c-5-2019-001
|
||||
object_ref:
|
||||
refer_to:
|
||||
required: true
|
||||
# range: string # uriorcurie
|
||||
inlined: false
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/object/mauritshuis-girl-pearl-earring
|
||||
record_type:
|
||||
has_type:
|
||||
required: true
|
||||
# range: string
|
||||
examples:
|
||||
- value: TREATMENT
|
||||
- value: CONDITION_ASSESSMENT
|
||||
- value: EXAMINATION
|
||||
record_date:
|
||||
has_timestamp:
|
||||
required: false
|
||||
range: date
|
||||
examples:
|
||||
- value: '1994-06-15'
|
||||
record_timespan:
|
||||
temporal_extent:
|
||||
required: false
|
||||
range: TimeSpan
|
||||
inlined: true
|
||||
|
|
@ -154,7 +153,7 @@ classes:
|
|||
examples:
|
||||
- value:
|
||||
- value:
|
||||
materials_used:
|
||||
use_material:
|
||||
- Gamblin conservation colors
|
||||
- Dammar varnish
|
||||
has_type:
|
||||
|
|
@ -165,14 +164,14 @@ classes:
|
|||
- value: CLEANING
|
||||
- value: RESTORATION
|
||||
- value: REFRAMING
|
||||
conservator:
|
||||
conserved_by:
|
||||
required: false
|
||||
# range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
- value: "Dr. J\xF8rgen Wadum"
|
||||
- value: Petria Noble
|
||||
conservator_affiliation:
|
||||
affiliated_with:
|
||||
required: false
|
||||
# range: string
|
||||
examples:
|
||||
|
|
@ -184,7 +183,7 @@ classes:
|
|||
examples:
|
||||
- value: Mauritshuis Conservation Studio, The Hague
|
||||
- value: Rijksmuseum Ateliergebouw
|
||||
materials_used:
|
||||
use_material:
|
||||
required: false
|
||||
# range: string
|
||||
multivalued: true
|
||||
|
|
@ -193,7 +192,7 @@ classes:
|
|||
- value: Paraloid B-72 consolidant
|
||||
- value: Japanese tissue paper
|
||||
- value: Gamblin conservation colors
|
||||
uses_or_used_technique:
|
||||
use:
|
||||
required: false
|
||||
range: Technique
|
||||
multivalued: true
|
||||
|
|
@ -219,7 +218,7 @@ classes:
|
|||
- value:
|
||||
has_type: X-RADIOGRAPHY
|
||||
has_label: Digital X-Ray
|
||||
photograph:
|
||||
has_url:
|
||||
required: false
|
||||
range: uri
|
||||
multivalued: true
|
||||
|
|
@ -237,7 +236,7 @@ classes:
|
|||
# range: string
|
||||
examples:
|
||||
- value: "Wadum, J\xF8rgen. \"Vermeer Illuminated: The Restoration of \nGirl with a Pearl Earring.\" Burlington Magazine 137, \nno. 1103 (1995): 90-95.\n"
|
||||
recommendation:
|
||||
recommend:
|
||||
required: false
|
||||
# range: string
|
||||
multivalued: true
|
||||
|
|
@ -246,7 +245,7 @@ classes:
|
|||
- value: Display in climate-controlled case only
|
||||
- value: Limit light exposure to 50 lux maximum
|
||||
- value: Handle with cotton gloves; fragile frame corners
|
||||
indicates_or_indicated:
|
||||
indicate:
|
||||
range: ConservationReview
|
||||
inlined: true
|
||||
required: false
|
||||
|
|
@ -261,18 +260,18 @@ classes:
|
|||
inlined: false
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/loan/mauritshuis-rijksmuseum-2023-001
|
||||
cost:
|
||||
has_expense:
|
||||
required: false
|
||||
range: decimal
|
||||
examples:
|
||||
- value: 150000
|
||||
cost_currency:
|
||||
has_currency:
|
||||
required: false
|
||||
# range: string
|
||||
examples:
|
||||
- value: EUR
|
||||
- value: USD
|
||||
receives_or_received:
|
||||
receive:
|
||||
range: FundingSource
|
||||
inlined: true
|
||||
inlined_as_list: true
|
||||
|
|
@ -285,7 +284,7 @@ classes:
|
|||
has_label: Getty Foundation
|
||||
- value:
|
||||
has_label: Bank Giro Loterij
|
||||
conservation_note:
|
||||
has_note:
|
||||
required: false
|
||||
# range: string
|
||||
multivalued: true
|
||||
|
|
@ -309,7 +308,7 @@ classes:
|
|||
record_id: https://nde.nl/ontology/hc/conservation/mauritshuis-670-1994-001
|
||||
object_ref: https://nde.nl/ontology/hc/object/mauritshuis-girl-pearl-earring
|
||||
record_type: TREATMENT
|
||||
record_timespan:
|
||||
temporal_extent:
|
||||
begin_of_the_begin: '1994-03-01'
|
||||
end_of_the_end: '1994-09-30'
|
||||
initial_of_the_initial:
|
||||
|
|
@ -331,34 +330,34 @@ classes:
|
|||
has_type:
|
||||
- CLEANING
|
||||
- RESTORATION
|
||||
conservator:
|
||||
conserved_by:
|
||||
- "Dr. J\xF8rgen Wadum"
|
||||
conservator_affiliation: Mauritshuis Conservation Department
|
||||
conservation_lab: Mauritshuis Conservation Studio, The Hague
|
||||
materials_used:
|
||||
use_material:
|
||||
- Shellsol A solvent
|
||||
- Dammar varnish (Kremer)
|
||||
- Gamblin conservation colors
|
||||
uses_or_used_technique:
|
||||
use:
|
||||
- has_type: SolventCleaning
|
||||
has_label: Solvent cleaning
|
||||
has_description: Removal of varnish with acetone/white spirit mixture
|
||||
- has_type: TratteggioInpainting
|
||||
has_label: Tratteggio inpainting
|
||||
has_description: Losses in-painted using fine parallel brushstrokes
|
||||
photograph:
|
||||
has_url:
|
||||
- https://mauritshuis.nl/conservation/670/before-1994.jpg
|
||||
- https://mauritshuis.nl/conservation/670/during-1994.jpg
|
||||
- https://mauritshuis.nl/conservation/670/after-1994.jpg
|
||||
report_document: "Wadum, J\xF8rgen. \"Vermeer Illuminated: Conservation, Restoration and \nResearch.\" The Hague: Mauritshuis, 1995.\n"
|
||||
recommendation:
|
||||
recommend:
|
||||
- Re-examine varnish layer in 25 years (c. 2019)
|
||||
- Maintain 45-55% relative humidity
|
||||
- Maximum 50 lux illumination
|
||||
indicates_or_indicated:
|
||||
indicate:
|
||||
temporal_extent:
|
||||
begin_of_the_begin: '2019-01-01'
|
||||
conservation_note:
|
||||
has_note:
|
||||
- Vermeer's monogram 'IVMeer' discovered during cleaning
|
||||
- Treatment documented in Burlington Magazine (1995)
|
||||
- value:
|
||||
|
|
@ -376,9 +375,9 @@ classes:
|
|||
description_text: Pre-loan condition check for Vermeer 2023 exhibition at Rijksmuseum. Painting in excellent stable condition. No changes from previous examination. Surface clean, varnish clear, frame secure.
|
||||
description_type: condition
|
||||
related_loan: https://nde.nl/ontology/hc/loan/mauritshuis-rijksmuseum-2023-001
|
||||
conservator:
|
||||
conserved_by:
|
||||
- Abbie Vandivere
|
||||
recommendation:
|
||||
recommend:
|
||||
- Cleared for loan
|
||||
- Courier required for transport
|
||||
- Climate case recommended
|
||||
|
|
@ -396,12 +395,12 @@ classes:
|
|||
has_description:
|
||||
description_text: Comprehensive technical examination as part of Operation Night Watch. Canvas shows historical damage from 1715 trimming and 1911/1975 attacks. Paint layer stable with localized losses. Varnish slightly yellowed.
|
||||
description_type: condition
|
||||
conservator:
|
||||
conserved_by:
|
||||
- Petria Noble
|
||||
- Robert Erdmann
|
||||
conservator_affiliation: Rijksmuseum Conservation Department
|
||||
report_url: https://www.rijksmuseum.nl/en/stories/operation-night-watch
|
||||
conservation_note:
|
||||
has_note:
|
||||
- Part of multi-year Operation Night Watch project
|
||||
- Largest and most detailed examination ever of this painting
|
||||
- Live-streamed to public
|
||||
|
|
|
|||
|
|
@ -15,21 +15,19 @@ imports:
|
|||
- ../enums/AuthorityRecordFormatEnum
|
||||
- ../enums/ConsortiumGovernanceRoleEnum
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/new/contributes_or_contributed
|
||||
- ../slots/20260202_matang/new/contributes_to
|
||||
- ../slots/20260202_matang/new/contribution_start_date
|
||||
- ../slots/20260202_matang/new/contributor_code
|
||||
- ../slots/20260202_matang/contribute_to
|
||||
- ../slots/20260202_matang/begin_of_the_begin
|
||||
- ../slots/20260202_matang/has_code
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_role
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_url
|
||||
- ../slots/20260202_matang/new/is_active
|
||||
- ../slots/20260202_matang/current
|
||||
- ../slots/20260202_matang/represented_by
|
||||
- ../slots/20260202_matang/member_of
|
||||
- ../slots/20260202_matang/new/name_local
|
||||
- ../slots/20260202_matang/new/provides_or_provided
|
||||
- ../slots/20260202_matang/new/record_format
|
||||
- ../slots/20260202_matang/provide
|
||||
- ../slots/20260202_matang/has_format
|
||||
classes:
|
||||
ContributingAgency:
|
||||
class_uri: org:FormalOrganization
|
||||
|
|
@ -74,12 +72,12 @@ classes:
|
|||
- linkml:https://nde.nl/ontology/hc/class/Standard
|
||||
slots:
|
||||
- has_label
|
||||
- contributes_or_contributed
|
||||
- record_format
|
||||
- provides_or_provided
|
||||
- contributes_to
|
||||
- contribution_start_date
|
||||
- is_active
|
||||
- contribute_to
|
||||
- has_format
|
||||
- provide
|
||||
- contribute_to
|
||||
- begin_of_the_begin
|
||||
- current
|
||||
- represented_by
|
||||
- has_url
|
||||
- has_description
|
||||
|
|
@ -87,10 +85,10 @@ classes:
|
|||
- member_of
|
||||
- has_role
|
||||
- has_score
|
||||
- name
|
||||
- country
|
||||
- has_name
|
||||
- in_country
|
||||
slot_usage:
|
||||
provides_or_provided:
|
||||
provide:
|
||||
# range: string
|
||||
multivalued: true
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
|
|
@ -100,7 +98,7 @@ classes:
|
|||
contain:
|
||||
- has_type: PERSON
|
||||
- has_type: CORPORATE_BODY
|
||||
contributes_to:
|
||||
contribute_to:
|
||||
# range: string
|
||||
also_allocation_agency:
|
||||
range: AllocationAgency
|
||||
|
|
@ -114,7 +112,7 @@ classes:
|
|||
range: uri
|
||||
inlined: false # Fixed invalid inline for primitive type
|
||||
multivalued: false
|
||||
contributes_or_contributed:
|
||||
contribute_to:
|
||||
range: AuthorityData
|
||||
inlined: true
|
||||
examples:
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ classes:
|
|||
slots:
|
||||
- has_type
|
||||
- temporal_extent
|
||||
- rate_value
|
||||
- has_value
|
||||
slot_usage:
|
||||
has_type:
|
||||
# range: string # uriorcurie
|
||||
|
|
|
|||
|
|
@ -10,11 +10,10 @@ prefixes:
|
|||
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/conversion_source_population
|
||||
- ../slots/20260202_matang/new/conversion_target_action
|
||||
- ../slots/20260202_matang/new/conversion_type_label
|
||||
- ../slots/20260202_matang/new/industry_benchmark_high
|
||||
- ../slots/20260202_matang/new/industry_benchmark_low
|
||||
- ../slots/20260202_matang/has_denominator_data
|
||||
- ../slots/20260202_matang/has_numerator
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_benchmark
|
||||
# default_range: string
|
||||
|
||||
classes:
|
||||
|
|
@ -46,11 +45,11 @@ classes:
|
|||
- skos:Concept
|
||||
|
||||
slots:
|
||||
- conversion_type_label
|
||||
- conversion_source_population
|
||||
- conversion_target_action
|
||||
- industry_benchmark_low
|
||||
- industry_benchmark_high
|
||||
- has_label
|
||||
- has_denominator_data
|
||||
- has_numerator
|
||||
- has_benchmark
|
||||
- has_benchmark
|
||||
|
||||
annotations:
|
||||
custodian_types: '["*"]'
|
||||
|
|
|
|||
|
|
@ -9,11 +9,10 @@ prefixes:
|
|||
imports:
|
||||
- ./ConversionRateType
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/conversion_source_population
|
||||
- ../slots/20260202_matang/new/conversion_target_action
|
||||
- ../slots/20260202_matang/new/conversion_type_label
|
||||
- ../slots/20260202_matang/new/industry_benchmark_high
|
||||
- ../slots/20260202_matang/new/industry_benchmark_low
|
||||
- ../slots/20260202_matang/has_denominator_data
|
||||
- ../slots/20260202_matang/has_numerator
|
||||
- ../slots/20260202_matang/has_label
|
||||
- ../slots/20260202_matang/has_benchmark
|
||||
# default_range: string
|
||||
classes:
|
||||
VisitorToPurchaseConversion:
|
||||
|
|
@ -27,15 +26,15 @@ classes:
|
|||
**CALCULATION**: (Purchasers / Total Visitors) × 100'
|
||||
class_uri: hc:VisitorToPurchaseConversion
|
||||
slot_usage:
|
||||
conversion_type_label:
|
||||
has_label:
|
||||
ifabsent: string(Visitor to Purchase)
|
||||
conversion_source_population:
|
||||
has_denominator_data:
|
||||
ifabsent: string(museum/venue visitors)
|
||||
conversion_target_action:
|
||||
has_numerator:
|
||||
ifabsent: string(made gift shop purchase)
|
||||
industry_benchmark_low:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.15)
|
||||
industry_benchmark_high:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.40)
|
||||
annotations:
|
||||
specificity_score: 0.1
|
||||
|
|
@ -53,15 +52,15 @@ classes:
|
|||
**CALCULATION**: (New Members / Total Visitors) × 100'
|
||||
class_uri: hc:VisitorToMemberConversion
|
||||
slot_usage:
|
||||
conversion_type_label:
|
||||
has_label:
|
||||
ifabsent: string(Visitor to Member)
|
||||
conversion_source_population:
|
||||
has_denominator_data:
|
||||
ifabsent: string(museum/venue visitors)
|
||||
conversion_target_action:
|
||||
has_numerator:
|
||||
ifabsent: string(became member/supporter)
|
||||
industry_benchmark_low:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.01)
|
||||
industry_benchmark_high:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.08)
|
||||
broad_mappings:
|
||||
- crm:E54_Dimension
|
||||
|
|
@ -76,15 +75,15 @@ classes:
|
|||
**CALCULATION**: (Physical Visits from Web / Website Visitors) × 100'
|
||||
class_uri: hc:OnlineToPhysicalConversion
|
||||
slot_usage:
|
||||
conversion_type_label:
|
||||
has_label:
|
||||
ifabsent: string(Online to Physical Visit)
|
||||
conversion_source_population:
|
||||
has_denominator_data:
|
||||
ifabsent: string(website visitors)
|
||||
conversion_target_action:
|
||||
has_numerator:
|
||||
ifabsent: string(visited venue physically)
|
||||
industry_benchmark_low:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.005)
|
||||
industry_benchmark_high:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.05)
|
||||
broad_mappings:
|
||||
- crm:E54_Dimension
|
||||
|
|
@ -98,15 +97,15 @@ classes:
|
|||
**CALCULATION**: (Clicks / Emails Delivered) × 100'
|
||||
class_uri: hc:EmailToClickConversion
|
||||
slot_usage:
|
||||
conversion_type_label:
|
||||
has_label:
|
||||
ifabsent: string(Email to Click)
|
||||
conversion_source_population:
|
||||
has_denominator_data:
|
||||
ifabsent: string(email recipients)
|
||||
conversion_target_action:
|
||||
has_numerator:
|
||||
ifabsent: string(clicked link in email)
|
||||
industry_benchmark_low:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.02)
|
||||
industry_benchmark_high:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.10)
|
||||
broad_mappings:
|
||||
- crm:E54_Dimension
|
||||
|
|
@ -120,15 +119,15 @@ classes:
|
|||
**CALCULATION**: (New Followers / Content Views) × 100'
|
||||
class_uri: hc:SocialToFollowerConversion
|
||||
slot_usage:
|
||||
conversion_type_label:
|
||||
has_label:
|
||||
ifabsent: string(Social to Follower)
|
||||
conversion_source_population:
|
||||
has_denominator_data:
|
||||
ifabsent: string(social media content viewers)
|
||||
conversion_target_action:
|
||||
has_numerator:
|
||||
ifabsent: string(became follower)
|
||||
industry_benchmark_low:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.01)
|
||||
industry_benchmark_high:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.15)
|
||||
broad_mappings:
|
||||
- crm:E54_Dimension
|
||||
|
|
@ -142,15 +141,15 @@ classes:
|
|||
**CALCULATION**: (Return Visitors / Total Ticket Buyers) × 100'
|
||||
class_uri: hc:TicketToReturnConversion
|
||||
slot_usage:
|
||||
conversion_type_label:
|
||||
has_label:
|
||||
ifabsent: string(Ticket to Return Visit)
|
||||
conversion_source_population:
|
||||
has_denominator_data:
|
||||
ifabsent: string(ticket buyers)
|
||||
conversion_target_action:
|
||||
has_numerator:
|
||||
ifabsent: string(made return visit within 12 months)
|
||||
industry_benchmark_low:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.20)
|
||||
industry_benchmark_high:
|
||||
has_benchmark:
|
||||
ifabsent: float(0.60)
|
||||
broad_mappings:
|
||||
- crm:E54_Dimension
|
||||
|
|
|
|||
|
|
@ -33,6 +33,6 @@ classes:
|
|||
specificity_rationale: Generic utility class/slot created during migration
|
||||
custodian_types: '[''*'']'
|
||||
slots:
|
||||
- latitude
|
||||
- longitude
|
||||
- has_latitude
|
||||
- has_longitude
|
||||
- source
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ imports:
|
|||
- linkml:types
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/is_branch_of_authority
|
||||
- ../slots/20260202_matang/branch_of
|
||||
classes:
|
||||
CountyRecordOffice:
|
||||
is_a: ArchiveOrganizationType
|
||||
|
|
@ -109,7 +109,7 @@ classes:
|
|||
'
|
||||
slots:
|
||||
- has_type
|
||||
- is_branch_of_authority
|
||||
- branch_of
|
||||
- has_score
|
||||
slot_usage:
|
||||
has_type:
|
||||
|
|
|
|||
|
|
@ -10,11 +10,11 @@ prefixes:
|
|||
default_prefix: hc
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/court_types_covered
|
||||
- ../slots/20260202_matang/related_to
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/jurisdiction_level
|
||||
- ../slots/20260202_matang/in_jurisdiction
|
||||
classes:
|
||||
CourtRecords:
|
||||
is_a: ArchiveOrganizationType
|
||||
|
|
@ -22,19 +22,19 @@ classes:
|
|||
description: "Archive specializing in judicial and court records.\n\n**Wikidata**: Q11906844 (Justizarchiv / court records archive)\n\n**DEFINITION**:\n\nCourt Records archives (Justizarchiv in German) preserve and provide access to \nrecords created by judicial bodies including:\n- Courts of law at all levels (supreme, appellate, district, local)\n- Tribunals and administrative courts\n- Notarial records (where managed by courts)\n- Legal proceedings documentation\n- Court orders, judgments, and decrees\n\n**SCOPE**:\n\nCourt archives differ from general government archives by their focus on:\n- Evidential value (legal proof, precedent)\n- Retention schedules based on legal requirements\n- Access restrictions (privacy, ongoing cases, sealed records)\n- Chain of custody requirements for legal validity\n\n**MULTILINGUAL LABELS**:\n- Justizarchiv (de)\n- archivo judicial (es)\n- archives judiciaires (fr)\n\n**RELATED TYPES**:\n- NotarialArchive (Q8203685) - notarial records specifically\n\
|
||||
- PublicArchive (Q27031009) - broader government records\n- LegalRecordSet - rico:RecordSetType for court record collections\n\n**ONTOLOGICAL ALIGNMENT**:\n- **SKOS**: skos:Concept (type classification)\n- **RiC-O**: rico:RecordSet for archival description of court fonds\n- **Wikidata**: Q11906844\n"
|
||||
slots:
|
||||
- court_types_covered
|
||||
- related_to
|
||||
- has_type
|
||||
- jurisdiction_level
|
||||
- in_jurisdiction
|
||||
- has_score
|
||||
- identified_by
|
||||
slot_usage:
|
||||
identified_by: null
|
||||
jurisdiction_level:
|
||||
in_jurisdiction:
|
||||
# range: string
|
||||
examples:
|
||||
- value: state
|
||||
- value: federal
|
||||
court_types_covered:
|
||||
related_to:
|
||||
# range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
|
|
@ -70,7 +70,7 @@ classes:
|
|||
- archives judiciaires@fr
|
||||
has_description: Archive preserving judicial and court records
|
||||
jurisdiction_level: federal
|
||||
court_types_covered:
|
||||
related_to:
|
||||
- civil
|
||||
- criminal
|
||||
- administrative
|
||||
|
|
|
|||
|
|
@ -17,11 +17,11 @@ default_prefix: hc
|
|||
imports:
|
||||
- ../classes/AgentType
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/cultural_focus_area
|
||||
- ../slots/20260202_matang/focus_on
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_score
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/new/institution_function
|
||||
- ../slots/20260202_matang/has_function
|
||||
classes:
|
||||
CulturalInstitution:
|
||||
is_a: CustodianType
|
||||
|
|
@ -29,21 +29,21 @@ classes:
|
|||
description: "Broad category for organizations that work for the preservation or promotion of culture.\n\n**Wikidata**: Q3152824 (cultural institution / kulturelle Organisation)\n\n**DEFINITION**:\n\nCultural Institution is a BROAD supertype that encompasses:\n- Galleries (G)\n- Libraries (L)\n- Archives (A)\n- Museums (M)\n- And other cultural heritage organizations\n\n**USAGE NOTE**:\n\nIn the GLAMORCUBESFIXPHDNT taxonomy, prefer SPECIFIC types when applicable:\n- Use GalleryOrganizationType for art galleries\n- Use LibraryOrganizationType for libraries\n- Use ArchiveOrganizationType for archives\n- Use MuseumOrganizationType for museums\n\nCulturalInstitution is used when:\n1. Institution spans multiple types (use with MIXED/X)\n2. Specific type cannot be determined\n3. Institution is cultural but outside GLAM scope\n\n**MULTILINGUAL LABELS**:\n- kulturelle Organisation (de)\n- instituci\xF3n cultural (es)\n- institution culturelle (fr)\n\n**RELATED CONCEPTS**:\n- GLAM (Q1030034)\
|
||||
\ - acronym for galleries, libraries, archives, museums\n- MemoryInstitution (Q1497649) - institutions preserving cultural memory\n- HeritageOrganization - schema.org type for heritage orgs\n"
|
||||
slots:
|
||||
- cultural_focus_area
|
||||
- focus_on
|
||||
- has_type
|
||||
- institution_function
|
||||
- has_function
|
||||
- has_score
|
||||
- identified_by
|
||||
slot_usage:
|
||||
identified_by: null
|
||||
cultural_focus_area:
|
||||
focus_on:
|
||||
# range: string
|
||||
multivalued: true
|
||||
examples:
|
||||
- value:
|
||||
- visual arts
|
||||
- heritage preservation
|
||||
institution_function:
|
||||
has_function:
|
||||
# range: string
|
||||
multivalued: true
|
||||
has_type:
|
||||
|
|
@ -74,10 +74,10 @@ classes:
|
|||
- "instituci\xF3n cultural@es"
|
||||
- institution culturelle@fr
|
||||
has_description: Organization working for preservation or promotion of culture
|
||||
cultural_focus_area:
|
||||
focus_on:
|
||||
- heritage preservation
|
||||
- cultural education
|
||||
institution_function:
|
||||
has_function:
|
||||
- collection
|
||||
- exhibition
|
||||
annotations:
|
||||
|
|
|
|||
|
|
@ -16,17 +16,17 @@ imports:
|
|||
- linkml:types
|
||||
- ../enums/CurationActivityTypeEnum
|
||||
- ../metadata
|
||||
- ../slots/20260202_matang/new/curated_holding
|
||||
- ../slots/20260202_matang/curate
|
||||
- ../slots/20260202_matang/has_objective
|
||||
- ../slots/20260202_matang/has_output
|
||||
- ../slots/20260202_matang/has_type
|
||||
- ../slots/20260202_matang/allocated_budget
|
||||
- ../slots/20260202_matang/new/is_recurring
|
||||
- ../slots/20260202_matang/new/objects_added
|
||||
- ../slots/20260202_matang/new/objects_affected
|
||||
- ../slots/20260202_matang/new/objects_count
|
||||
- ../slots/20260202_matang/new/objects_removed
|
||||
- ../slots/20260202_matang/new/priority
|
||||
- ../slots/20260202_matang/recur_at
|
||||
- ../slots/20260202_matang/add
|
||||
- ../slots/20260202_matang/affect
|
||||
- ../slots/20260202_matang/has_quantity
|
||||
- ../slots/20260202_matang/remove
|
||||
- ../slots/20260202_matang/has_priority
|
||||
- ../slots/20260202_matang/new/recurrence_pattern
|
||||
- ../slots/20260202_matang/new/responsible_actor
|
||||
- ../slots/20260202_matang/new/responsible_department
|
||||
|
|
@ -49,16 +49,16 @@ classes:
|
|||
- aat:300054277
|
||||
slots:
|
||||
- allocated_budget
|
||||
- curated_holding
|
||||
- curate
|
||||
- has_type
|
||||
- has_objective
|
||||
- has_output
|
||||
- is_recurring
|
||||
- objects_added
|
||||
- recur_at
|
||||
- add
|
||||
- objects_affected
|
||||
- objects_count
|
||||
- objects_removed
|
||||
- priority
|
||||
- has_quantity
|
||||
- remove
|
||||
- has_priority
|
||||
- recurrence_pattern
|
||||
- responsible_actor
|
||||
- responsible_department
|
||||
|
|
@ -69,7 +69,7 @@ classes:
|
|||
- value: INVENTORY
|
||||
- value: DIGITIZATION
|
||||
- value: ACCESSIONING
|
||||
curated_holding:
|
||||
curate:
|
||||
range: Collection
|
||||
multivalued: true
|
||||
inlined: false
|
||||
|
|
@ -87,7 +87,7 @@ classes:
|
|||
- value: Registration Department
|
||||
- value: Digital Initiatives
|
||||
- value: Conservation Lab
|
||||
is_recurring:
|
||||
recur_at:
|
||||
range: boolean
|
||||
examples:
|
||||
- value: true
|
||||
|
|
@ -106,21 +106,21 @@ classes:
|
|||
- value:
|
||||
- https://nde.nl/ontology/hc/object/rijksmuseum-nightwatch
|
||||
- https://nde.nl/ontology/hc/object/rijksmuseum-milkmaid
|
||||
objects_added:
|
||||
add:
|
||||
range: ExhibitedObject
|
||||
multivalued: true
|
||||
inlined: false
|
||||
examples:
|
||||
- value:
|
||||
- https://nde.nl/ontology/hc/object/new-acquisition-2025-001
|
||||
objects_removed:
|
||||
remove:
|
||||
range: ExhibitedObject
|
||||
multivalued: true
|
||||
inlined: false
|
||||
examples:
|
||||
- value:
|
||||
- https://nde.nl/ontology/hc/object/deaccessioned-2025-001
|
||||
objects_count:
|
||||
has_quantity:
|
||||
range: integer
|
||||
examples:
|
||||
- value: 10000
|
||||
|
|
@ -154,7 +154,7 @@ classes:
|
|||
examples:
|
||||
- value: EUR 125,000
|
||||
- value: USD 50,000
|
||||
priority:
|
||||
has_priority:
|
||||
# range: string
|
||||
examples:
|
||||
- value: HIGH
|
||||
|
|
@ -188,7 +188,7 @@ classes:
|
|||
identified_by: https://nde.nl/ontology/hc/activity/rijksmuseum-inventory-2025-001
|
||||
has_label: 2025 Annual Collection Inventory - Dutch Masters
|
||||
has_description: "Annual physical inventory of the Dutch Masters collection \n(Gallery of Honour and adjacent galleries). Spot-check methodology \nwith 20% sample verification against CMS records. Includes \ncondition notation and location verification.\n"
|
||||
curated_holding:
|
||||
curate:
|
||||
- https://nde.nl/ontology/hc/collection/rijksmuseum-dutch-masters
|
||||
responsible_actor:
|
||||
- https://nde.nl/ontology/hc/person/maria-jansen-registrar
|
||||
|
|
@ -209,7 +209,7 @@ classes:
|
|||
identified_by: https://nde.nl/ontology/hc/activity/nationaal-archief-digitization-voc-2024
|
||||
has_label: VOC Archives Digitization Project - Phase 2
|
||||
has_description: "Second phase of systematic digitization of VOC (Dutch East India \nCompany) archives. Focus on Hoge Regering Batavia series (1.04.02). \nHigh-resolution scanning with OCR/HTR processing for searchability. \nIIIF-compliant output.\n"
|
||||
curated_holding:
|
||||
curate:
|
||||
- https://nde.nl/ontology/hc/collection/nationaal-archief-voc-fonds
|
||||
responsible_department: Digital Services
|
||||
temporal_extent:
|
||||
|
|
@ -234,7 +234,7 @@ classes:
|
|||
identified_by: https://nde.nl/ontology/hc/activity/kb-rehousing-medieval-2025
|
||||
has_label: Medieval Manuscripts Rehousing Initiative
|
||||
has_description: "Transfer of 342 medieval manuscripts from legacy storage to \ncustom-fitted archival boxes with acid-free tissue interleaving. \nIncludes updated location records and condition photography.\n"
|
||||
curated_holding:
|
||||
curate:
|
||||
- https://nde.nl/ontology/hc/collection/kb-medieval-manuscripts
|
||||
responsible_department: Special Collections Conservation
|
||||
temporal_extent:
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@ prefixes:
|
|||
dcterms: http://purl.org/dc/terms/
|
||||
imports:
|
||||
- linkml:types
|
||||
- ../slots/20260202_matang/new/currency_code
|
||||
- ../slots/20260202_matang/new/currency_symbol
|
||||
- ../slots/20260202_matang/has_code
|
||||
- ../slots/20260202_matang/symbolized_by
|
||||
- ../slots/20260202_matang/has_description
|
||||
- ../slots/20260202_matang/identified_by
|
||||
- ../slots/20260202_matang/has_label
|
||||
|
|
@ -27,9 +27,9 @@ classes:
|
|||
- qudt:CurrencyUnit
|
||||
slots:
|
||||
- identified_by
|
||||
- currency_code
|
||||
- has_code
|
||||
- has_label
|
||||
- currency_symbol
|
||||
- symbolized_by
|
||||
- has_description
|
||||
- has_score
|
||||
slot_usage:
|
||||
|
|
@ -38,7 +38,7 @@ classes:
|
|||
required: false
|
||||
examples:
|
||||
- value: https://nde.nl/ontology/hc/currency/EUR
|
||||
currency_code:
|
||||
has_code:
|
||||
# range: string
|
||||
required: true
|
||||
pattern: ^[A-Z]{3}$
|
||||
|
|
@ -54,7 +54,7 @@ classes:
|
|||
- value: Euro
|
||||
- value: US Dollar
|
||||
- value: Dutch Guilder
|
||||
currency_symbol:
|
||||
symbolized_by:
|
||||
# range: string
|
||||
required: false
|
||||
examples:
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue