glam/schemas/20251121/linkml/modules/classes/Place.yaml
kempersc f7bf1cc5ae Refactor schema slots and classes
- Deleted obsolete slot definitions: statement_summary, statement_text, statement_type, status_name, supersede_articles, supersede_condition, supersede_name, temporal_dynamics, total_amount, typical_contents, use_cases, was_acquired_through, was_fetched_at, was_retrieved_at.
- Updated existing slot definitions for states_or_stated to enhance clarity and structure.
- Introduced new classes: Article, ConditionofAccess, FinancialStatementType, MaximumQuantity, Series, Summary, Type, and their respective slots to improve schema organization and usability.
- Added new slots: changes_or_changed_through, has_or_had_condition_of_access, has_or_had_heritage_type, is_or_was_part_of_series, is_or_was_retrieved_at, maximum_of_maximum to capture additional metadata and relationships.
2026-01-30 00:29:31 +01:00

103 lines
2.9 KiB
YAML

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.