Major slot migrations following slot_fixes.yaml revisions: - TimeSpan: begin_of_the_begin, begin_of_the_end, end_of_the_begin, end_of_the_end - Quantity: has_or_had_measurement_unit with MeasureUnit class - Description: has_or_had_description with Description class - URL, WikiData, Timestamp, Location, Provenance pattern classes New slots for RiC-O compliance: - Temporal: has_or_had_time_interval, calendar_system - Transfer: is_or_was_transferred, has_or_had_policy - Location: starts/ends_or_started/ended_at_location - Provenance: has_or_had_provenance_path, is_or_was_webarchived_at Archive deprecated slots per Rule 53 workflow.
107 lines
3.1 KiB
YAML
107 lines
3.1 KiB
YAML
# Place - A geographic or administrative place for containment relationships
|
|
# Created per slot_fixes.yaml migration for: within_place, within_auxiliary_place
|
|
# Creation date: 2026-01-14
|
|
|
|
id: https://nde.nl/ontology/hc/classes/Place
|
|
name: Place
|
|
title: Place
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
gn: http://www.geonames.org/ontology#
|
|
locn: http://www.w3.org/ns/locn#
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
default_range: string
|
|
|
|
classes:
|
|
Place:
|
|
description: >-
|
|
A geographic or administrative place used for containment relationships.
|
|
|
|
**DISTINCTION FROM Location**:
|
|
- `Location` is for precise physical locations (address, coordinates)
|
|
- `Place` is for administrative/geographic containment (city within province)
|
|
|
|
**USE CASES**:
|
|
- `within_place`: Institution is within a city/region
|
|
- `within_auxiliary_place`: Secondary location containment
|
|
- Administrative hierarchies: settlement → region → country
|
|
|
|
**ONTOLOGY MAPPING**:
|
|
- class_uri: schema:Place (generic place concept)
|
|
- Supports GeoNames integration for standardized place references
|
|
|
|
class_uri: schema:Place
|
|
|
|
close_mappings:
|
|
- gn:Feature
|
|
- locn:Location
|
|
|
|
related_mappings:
|
|
- schema:AdministrativeArea
|
|
|
|
attributes:
|
|
place_name:
|
|
range: string
|
|
required: true
|
|
description: >-
|
|
Name of the place (e.g., "Amsterdam", "Noord-Holland", "Netherlands").
|
|
|
|
place_type:
|
|
range: string
|
|
description: >-
|
|
Type of place (e.g., "settlement", "region", "country", "district").
|
|
|
|
geonames_id:
|
|
range: integer
|
|
description: >-
|
|
GeoNames identifier for standardized place reference.
|
|
Example: 2759794 for Amsterdam.
|
|
|
|
iso_code:
|
|
range: string
|
|
description: >-
|
|
ISO code for administrative areas.
|
|
Examples: "NL" (country), "NL-NH" (region), "AMS" (settlement code).
|
|
|
|
parent_place:
|
|
range: Place
|
|
inlined: true
|
|
description: >-
|
|
Parent place in the administrative hierarchy.
|
|
Example: Amsterdam's parent is Noord-Holland.
|
|
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: >-
|
|
Place references applicable to all custodian types.
|
|
custodian_types_primary: "*"
|
|
specificity_score: 0.2
|
|
specificity_rationale: >-
|
|
Low specificity - universal geographic concept.
|
|
|
|
examples:
|
|
- value: |
|
|
Place:
|
|
place_name: "Amsterdam"
|
|
place_type: "settlement"
|
|
geonames_id: 2759794
|
|
iso_code: "AMS"
|
|
parent_place:
|
|
place_name: "Noord-Holland"
|
|
place_type: "region"
|
|
iso_code: "NL-NH"
|
|
description: Amsterdam as a settlement within Noord-Holland.
|
|
|
|
- value: |
|
|
Place:
|
|
place_name: "Netherlands"
|
|
place_type: "country"
|
|
iso_code: "NL"
|
|
geonames_id: 2750405
|
|
description: Country-level place reference.
|