glam/schemas/20251121/linkml/modules/classes/Policy.yaml
kempersc ca4a54181e Refactor schema files to improve clarity and maintainability
- Updated WorldCatIdentifier.yaml to remove unnecessary description and ensure consistent formatting.
- Enhanced WorldHeritageSite.yaml by breaking long description into multiple lines for better readability and removed unused attributes.
- Simplified WritingSystem.yaml by removing redundant attributes and ensuring consistent formatting.
- Cleaned up XPathScore.yaml by removing unnecessary attributes and ensuring consistent formatting.
- Improved YoutubeChannel.yaml by breaking long description into multiple lines for better readability.
- Enhanced YoutubeEnrichment.yaml by breaking long description into multiple lines for better readability.
- Updated YoutubeVideo.yaml to break long description into multiple lines and removed legacy field name.
- Refined has_or_had_affiliation.yaml by removing unnecessary comments and ensuring clarity.
- Cleaned up is_or_was_retrieved_at.yaml by removing unnecessary comments and ensuring clarity.
- Added rules for generic slots and avoiding rough edits in schema files to maintain structural integrity.
- Introduced changes_or_changed_through.yaml to define a new slot for linking entities to change events.
2026-01-31 00:46:23 +01:00

106 lines
2.7 KiB
YAML

id: https://nde.nl/ontology/hc/class/Policy
name: policy_class
title: Policy Base Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
odrl: http://www.w3.org/ns/odrl/2/
dcterms: http://purl.org/dc/terms/
schema: http://schema.org/
prov: http://www.w3.org/ns/prov#
crm: http://www.cidoc-crm.org/cidoc-crm/
skos: http://www.w3.org/2004/02/skos/core#
rdfs: http://www.w3.org/2000/01/rdf-schema#
org: http://www.w3.org/ns/org#
xsd: http://www.w3.org/2001/XMLSchema#
default_prefix: hc
imports:
- linkml:types
- ../slots/is_or_was_effective_at
- ../slots/is_or_was_expired_at
- ../slots/note
- ../slots/policy_description
- ../slots/policy_id
- ../slots/policy_name
classes:
Policy:
class_uri: odrl:Policy
abstract: true
description: 'Abstract base class for all policy types.
**DEFINITION**:
A Policy defines rules, constraints, and conditions that govern
activities, resources, or entities within a heritage custodian context.
**SUBCLASSES**:
- **TransferPolicy**: Policies governing custody/ownership transfers
- **ConditionPolicy**: Policies specifying required conditions
- **AccessPolicy**: Policies defining access rights and restrictions
- **RetentionPolicy**: Policies for record retention schedules
**ODRL ALIGNMENT**:
`odrl:Policy` - "A Policy is a named entity for a rule-based system
for specifying permissions, prohibitions, and obligations."
**SEMANTIC PATTERN**:
Policy classes define WHAT SHOULD BE (normative).
Observation classes capture WHAT IS (descriptive).
The gap between policy and observation is a key quality metric.
Created as part of condition_policy migration per slot_fixes.yaml (Rule 53).
'
exact_mappings:
- odrl:Policy
close_mappings:
- schema:GovernmentService
- dcterms:Policy
slots:
- policy_id
- policy_name
- policy_description
- is_or_was_effective_at
- is_or_was_expired_at
- note
slot_usage:
policy_id:
required: false
policy_name:
required: true
policy_description:
is_or_was_effective_at:
range: date
required: false
is_or_was_expired_at:
range: date
required: false
note:
annotations:
custodian_types: '["*"]'
custodian_types_rationale: Policies apply to all heritage custodian types.
specificity_score: 0.35
specificity_rationale: General base class for all policy types.
comments:
- Abstract base class - use subclasses for specific policy types
- Follows ODRL policy model for rule-based systems
- Created 2026-01-22 per slot_fixes.yaml condition_policy migration