glam/schemas/20251121/linkml/modules/classes/BirthPlace.yaml
kempersc fcd1c21c63 Add aliases and enhance slot definitions across various modules
- Added new aliases for existing slots to improve clarity and usability, including:
  - has_deadline: has_embargo_end_date
  - has_extent: has_extent_text
  - has_fonds: has_fond
  - has_laboratory: conservation_lab
  - has_language: has_iso_code639_1, has_iso_code639_3
  - has_legal_basis: legal_basis
  - has_light_exposure: max_light_lux
  - has_measurement_unit: has_unit
  - has_note: has_custodian_observation
  - has_occupation: occupation
  - has_operating_hours: has_operating_hours
  - has_position: position
  - has_quantity: has_artwork_count, link_count
  - has_roadmap: review_date
  - has_skill: skill
  - has_speaker: speaker_label
  - has_specification: specification_url
  - has_statement: rights_statement_url, rights_statement
  - has_type: custodian_only
  - has_user_category: serves_visitors_only
  - hold_record_set: record_count
  - identified_by: has_index_number
  - in_period: has_period
  - in_place: has_place
  - in_series: has_series
  - measure: has_measurement
  - measured_on: measurement_date
  - organized_by: has_organizer
  - originate_from: has_origin
  - part_of: suborganization_of
  - published_on: has_publication_date
  - receive_investment: has_investment
  - related_to: connection_heritage_type
  - require: preservation_requirement
  - safeguarded_by: current_keeper, record_holder_note
  - state: states_or_stated
  - take_comission: takes_or_took_comission
  - take_place_at: takes_or_took_place_at
  - transmit_through: transmits_or_transmitted_through
  - warrant: warrants_or_warranted

- Introduced a new slot definition for evaluated_through to capture evaluation methodologies and review statuses.
2026-02-14 14:41:49 +01:00

115 lines
4.3 KiB
YAML

id: https://nde.nl/ontology/hc/class/BirthPlace
name: birth_place_class
title: Birth Place Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
crm: http://www.cidoc-crm.org/cidoc-crm/
gn: http://www.geonames.org/ontology#
wdt: http://www.wikidata.org/prop/direct/
dcterms: http://purl.org/dc/terms/
prov: http://www.w3.org/ns/prov#
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#
imports:
- linkml:types
- ../metadata
- ../slots/has_coordinates
- ../slots/in_country
- ../slots/identified_by
- ../slots/has_score
- ../slots/has_name
- ../slots/has_label
- ../slots/has_source
- ../slots/has_code
default_prefix: hc
classes:
BirthPlace:
class_uri: schema:Place
description: "Structured representation of a person's place of birth with support for historical place names, modern equivalents, and geographic identifiers.\n**PURPOSE**:\nBirthPlace replaces simple string birth_place slots to provide: - Historical place name preservation - Modern place name linkage - Geographic identifier integration (GeoNames, Wikidata) - Coordinate storage for mapping applications\n**HISTORICAL VS. MODERN NAMES**:\nMany birth places used historical names that have since changed: - \"Batavia\" \u2192 \"Jakarta\" - \"Bombay\" \u2192 \"Mumbai\" - \"Leningrad\" \u2192 \"St. Petersburg\" - \"Saigon\" \u2192 \"Ho Chi Minh City\"\nBirthPlace preserves the source name while linking to modern identifiers.\n**GEOGRAPHIC RESOLUTION**:\nPer AGENTS.md Rule on GeoNames as authoritative source: - `geonames_id`: Links to GeoNames for standardization - `identified_by`: Links to Wikidata for additional context - `coordinates`: Lat/lon for mapping\n**ONTOLOGY ALIGNMENT**:\n| Ontology\
\ | Mapping | Usage | |----------|---------|-------| | **Schema.org** | `schema:Place` | Primary class | | **CIDOC-CRM** | `crm:E53_Place` | Place entity | | **GeoNames** | `gn:Feature` | Geographic feature |\n**EXAMPLE**:\n```yaml has_place_of_birth:\n place_name: \"Batavia\"\n modern_place_name: \"Jakarta\"\n country_code: \"ID\"\n geonames_id: 1642911\n identified_by:\n qid: \"Q3630\"\n```"
exact_mappings:
- schema:Place
close_mappings:
- crm:E53_Place
- gn:Feature
slots:
- has_label
- has_name
- in_country
- has_code
- identified_by
- has_coordinates
- has_source
- has_score
slot_usage:
has_label:
# range: string
required: true
examples:
- value: Amsterdam
- value: Batavia
has_name:
# range: string
required: false
examples:
- value: Jakarta
in_country:
# range: string
required: false
pattern: ^[A-Z]{2}$
examples:
- value: NL
- value: ID
has_code:
# range: string
required: false
examples:
- value: NH
- value: 2759794
identified_by:
range: WikiDataIdentifier
required: false
examples:
- value:
has_coordinates:
# range: string
required: false
examples:
- value: 52.3676,4.9041
has_source:
# range: string
required: false
examples:
- value: born at the family estate in rural Gelderland
comments:
- Replaces simple birth_place string slot (Rule 53)
- Preserves historical place names while linking to modern identifiers
- GeoNames ID is authoritative per AGENTS.md
see_also:
- https://schema.org/birthPlace
- https://www.geonames.org/
examples:
- value:
place_name: Amsterdam
country_code: NL
region_code: NH
identified_by:
coordinates: 52.3676,4.9041
- value:
place_name: Batavia
modern_place_name: Jakarta
country_code: ID
identified_by:
- value:
place_name: rural Gelderland
country_code: NL
region_code: GE
place_source_text: born at the family estate in rural Gelderland
annotations:
specificity_score: 0.45
specificity_rationale: Birth places are relevant for person research across heritage sectors.
custodian_types: "['*']"