- Removed obsolete slots: `has_or_had_custodian_observation`, `provider`, and `specificity_annotation`. - Updated `has_or_had_score` slot to use `SpecificityScore` class and modified its description and examples. - Added new slots: `end_seconds`, `end_time`, `has_archive_path`, `has_or_had_custodian_name`, `protocol_name`, and `protocol_version`. - Introduced a script `check_annotation_types.py` to validate the presence and structure of `custodian_types` in YAML files. - Added a script `update_specificity.py` to automate updates related to `SpecificityAnnotation` to `SpecificityScore`.
111 lines
No EOL
4.1 KiB
YAML
111 lines
No EOL
4.1 KiB
YAML
id: https://nde.nl/ontology/hc/class/Access
|
|
name: Access
|
|
title: Access Class
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
dcterms: http://purl.org/dc/terms/
|
|
crm: http://www.cidoc-crm.org/cidoc-crm/
|
|
default_prefix: hc
|
|
imports:
|
|
- linkml:types
|
|
- ../enums/AccessTypeEnum
|
|
- ../metadata
|
|
- ../slots/has_or_had_description
|
|
- ../slots/has_or_had_frequency
|
|
- ../slots/has_or_had_type
|
|
- ../slots/has_or_had_user_category
|
|
- ../slots/temporal_extent
|
|
classes:
|
|
Access:
|
|
class_uri: dcterms:RightsStatement
|
|
description: |
|
|
Structured access information for heritage collections, services, or facilities.
|
|
**Purpose**:
|
|
Replaces simple string descriptions of access conditions with structured
|
|
data capturing access types, eligible users, conditions, and restrictions.
|
|
**Key Properties**:
|
|
- `has_or_had_type`: Type of access (PUBLIC, BY_APPOINTMENT, RESTRICTED, etc.)
|
|
- `has_or_had_user_category`: Who can access (public, students, faculty, researchers)
|
|
- `condition_of_access`: Conditions or requirements for access
|
|
- `has_or_had_description`: Free-text description
|
|
- `temporal_extent`: When this access policy applies
|
|
**Access Types**:
|
|
- PUBLIC: Open to general public
|
|
- BY_APPOINTMENT: Requires advance appointment
|
|
- ACADEMIC: Restricted to academic community
|
|
- RESEARCHER: Restricted to credentialed researchers
|
|
- MEMBER: Requires membership
|
|
- RESTRICTED: Limited access with specific conditions
|
|
- CLOSED: Not currently accessible
|
|
- DIGITAL_ONLY: Available only in digital form
|
|
**Ontological Alignment**:
|
|
- **Primary**: `dcterms:RightsStatement` - Dublin Core rights statement
|
|
- **Close**: `schema:publicAccess` - Schema.org access indicator
|
|
- **Related**: `crm:E30_Right` - CIDOC-CRM rights
|
|
exact_mappings:
|
|
- dcterms:RightsStatement
|
|
close_mappings:
|
|
- schema:publicAccess
|
|
related_mappings:
|
|
- crm:E30_Right
|
|
slots:
|
|
- has_or_had_type
|
|
- has_or_had_user_category
|
|
- has_or_had_description
|
|
- temporal_extent
|
|
- has_or_had_frequency
|
|
slot_usage:
|
|
has_or_had_type:
|
|
range: AccessTypeEnum
|
|
required: true
|
|
has_or_had_user_category:
|
|
required: false
|
|
examples:
|
|
- value: "enrolled students"
|
|
- value: "faculty and staff"
|
|
- value: "visiting researchers with credentials"
|
|
temporal_extent:
|
|
required: false
|
|
range: TimeSpan
|
|
inlined: true
|
|
has_or_had_frequency:
|
|
required: false
|
|
range: Frequency
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
has_or_had_label: "Daily"
|
|
annotations:
|
|
specificity_score: 0.50
|
|
specificity_rationale: "Moderately specific - applies to collection and service access contexts"
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: "All institution types offer some form of access"
|
|
comments:
|
|
- "Created per slot_fixes.yaml revision for collection_access migration"
|
|
- "Replaces string-based collection_access with structured access data"
|
|
- "RULE 53: Part of collection_access → offers_or_offered_access + Access migration"
|
|
examples:
|
|
- value:
|
|
has_or_had_type: PUBLIC
|
|
has_or_had_description: "Open to general public during gallery hours"
|
|
has_or_had_user_category:
|
|
- "general public"
|
|
- value:
|
|
has_or_had_type: BY_APPOINTMENT
|
|
has_or_had_user_category:
|
|
- "credentialed researchers"
|
|
- "graduate students with faculty sponsor"
|
|
- value:
|
|
has_or_had_type: ACADEMIC
|
|
has_or_had_description: "Open to enrolled students and faculty; public by appointment"
|
|
has_or_had_user_category:
|
|
- "enrolled students"
|
|
- "faculty"
|
|
- "research staff"
|
|
- value:
|
|
has_or_had_type: DIGITAL_ONLY
|
|
has_or_had_description: "Collection accessible only through online database"
|
|
has_or_had_user_category:
|
|
- "anyone with internet access" |