44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
# OpeningPeriod - Single opening period
|
|
# Extracted from custodian_source.yaml per Rule 38 (modular schema files)
|
|
# Extraction date: 2026-01-08
|
|
|
|
id: https://nde.nl/ontology/hc/classes/OpeningPeriod
|
|
name: OpeningPeriod
|
|
title: OpeningPeriod
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
prov: http://www.w3.org/ns/prov#
|
|
xsd: http://www.w3.org/2001/XMLSchema#
|
|
time: http://www.w3.org/2006/time#
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
|
|
- ./TimeSlot
|
|
default_range: string
|
|
|
|
classes:
|
|
OpeningPeriod:
|
|
description: >-
|
|
Single opening period representing a time window when an institution is
|
|
accessible, defined by open and close TimeSlot values.
|
|
|
|
Ontology mapping rationale:
|
|
- class_uri is schema:OpeningHoursSpecification because this class represents
|
|
structured opening hours data with open/close times
|
|
- exact_mappings includes time:Interval as both represent bounded time periods
|
|
- related_mappings includes schema:Schedule for broader scheduling context
|
|
class_uri: schema:OpeningHoursSpecification
|
|
exact_mappings:
|
|
- time:Interval
|
|
related_mappings:
|
|
- schema:Schedule
|
|
attributes:
|
|
open:
|
|
range: TimeSlot
|
|
close:
|
|
range: TimeSlot
|