- Added detailed descriptions for slots: collecting_scope, collection_access, custody_history, education_level, membership_size, and publication_activity to improve clarity and usability. - Removed the publication_date slot due to migration to a new structure. - Updated slot fixes with migration notes and adjustments for various slots, ensuring alignment with new ontology standards. - Introduced new classes for DigitalPlatformV2, including DigitalPlatformV2DataQualityNotes, DigitalPlatformV2DataSource, DigitalPlatformV2KeyContact, DigitalPlatformV2OrganizationProfile, DigitalPlatformV2OrganizationStatus, DigitalPlatformV2PrimaryPlatform, DigitalPlatformV2Provenance, DigitalPlatformV2ServiceDetails, and DigitalPlatformV2TransformationMetadata, each with comprehensive attributes and descriptions. - Added classes for EnrichmentProvenance and EnrichmentProvenanceEntry to track provenance for enrichment sources, including detailed attributes for verification and source tracking. - Created LogoClaim, LogoEnrichment, and LogoEnrichmentSummary classes to manage logo and favicon data extracted from web scraping, with attributes for claims and summary statistics. - Archived the publication_date slot to maintain historical records.
76 lines
2.4 KiB
YAML
76 lines
2.4 KiB
YAML
# WikidataLocation - Location properties from Wikidata
|
|
# Extracted from custodian_source.yaml per Rule 38 (modular schema files)
|
|
# Extraction date: 2026-01-08
|
|
|
|
id: https://nde.nl/ontology/hc/classes/WikidataLocation
|
|
name: WikidataLocation
|
|
title: WikidataLocation
|
|
|
|
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#
|
|
geo: http://www.w3.org/2003/01/geo/wgs84_pos#
|
|
locn: http://www.w3.org/ns/locn#
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
|
|
- ./WikidataCoordinates
|
|
- ./WikidataEntity
|
|
default_range: string
|
|
|
|
classes:
|
|
WikidataLocation:
|
|
description: >-
|
|
Location properties extracted from Wikidata including country (P17),
|
|
headquarters location (P159), coordinates (P625), administrative
|
|
entity (P131), postal code (P281), and adjacent buildings (P3032).
|
|
|
|
Ontology mapping rationale:
|
|
- class_uri is schema:Place because location properties describe
|
|
a geographic place.
|
|
- close_mappings includes locn:Address from W3C Locn as this captures
|
|
structured location information.
|
|
- related_mappings includes geo:SpatialThing for coordinate data
|
|
and prov:Location for provenance context.
|
|
class_uri: schema:Place
|
|
close_mappings:
|
|
- locn:Address
|
|
related_mappings:
|
|
- geo:SpatialThing
|
|
- prov:Location
|
|
attributes:
|
|
country:
|
|
range: Any
|
|
any_of:
|
|
- range: string
|
|
- range: WikidataEntity
|
|
description: Country information (can be ISO 3166-1 alpha-2 string or WikidataEntity object)
|
|
country_reference:
|
|
any_of:
|
|
- range: string
|
|
- range: WikidataEntity
|
|
description: Country Q-ID (can be ISO 3166-1 alpha-2 string or WikidataEntity object)
|
|
headquarters_location:
|
|
range: WikidataEntity
|
|
coordinates:
|
|
range: WikidataCoordinates
|
|
located_in_admin_entity:
|
|
range: WikidataEntity
|
|
postal_code:
|
|
any_of:
|
|
- range: string
|
|
- range: string
|
|
multivalued: true
|
|
inlined_as_list: true
|
|
description: Postal/ZIP code(s) from Wikidata
|
|
adjacent_building:
|
|
range: WikidataEntity
|
|
description: Adjacent building/structure (P3032)
|
|
location:
|
|
range: WikidataEntity
|
|
description: Location (P276)
|