Schema enhancements (443 files): - Add class_uri with proper ontology references (schema:, prov:, skos:, rico:) - Add close_mappings, related_mappings per Rule 50 convention - Replace stub hc: slot_uri with standard predicates (dcterms:identifier, skos:prefLabel) - Improve descriptions with ontology mapping rationale - Add prefixes blocks to all schema modules Entity Resolution improvements: - Add entity_resolution module with email semantics parsing - Enhance build_entity_resolution.py with email-based matching signals - Extend Entity Review API with filtering by signal types and count - Add candidates caching and indexing for performance - Add ReviewLoginPage component New rules and documentation: - Add Rule 51: No Hallucinated Ontology References - Add .opencode/rules/no-hallucinated-ontology-references.md - Add .opencode/rules/slot-ontology-mapping-reference.md - Add adms.ttl and dqv.ttl ontology files Frontend ontology support: - Add RiC-O_1-1.rdf and schemaorg.owl to public/ontology
72 lines
2.3 KiB
YAML
72 lines
2.3 KiB
YAML
# RejectedGoogleMapsData - Rejected Google Maps data preserved for audit trail
|
|
# Extracted from custodian_source.yaml per Rule 38 (modular schema files)
|
|
# Extraction date: 2026-01-08
|
|
|
|
id: https://nde.nl/ontology/hc/classes/RejectedGoogleMapsData
|
|
name: RejectedGoogleMapsData
|
|
title: RejectedGoogleMapsData
|
|
|
|
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#
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
|
|
default_range: string
|
|
|
|
classes:
|
|
RejectedGoogleMapsData:
|
|
description: >-
|
|
Rejected Google Maps data preserved for audit trail, documenting
|
|
place data that was fetched but rejected due to validation failures
|
|
(e.g., country mismatch). Includes place ID, name, address, coordinates,
|
|
expected vs returned country, and timestamps.
|
|
|
|
Ontology mapping rationale:
|
|
- class_uri is prov:Entity because this is data preserved for
|
|
audit purposes with full provenance
|
|
- close_mappings includes prov:InvalidatedEntity as this data was
|
|
explicitly rejected/invalidated
|
|
- related_mappings includes schema:Place as the underlying data
|
|
describes a geographic place
|
|
class_uri: prov:Entity
|
|
close_mappings:
|
|
- prov:InvalidatedEntity
|
|
related_mappings:
|
|
- schema:Place
|
|
attributes:
|
|
place_id:
|
|
range: string
|
|
description: Google Maps place ID
|
|
name:
|
|
range: string
|
|
description: Place name from Google
|
|
formatted_address:
|
|
range: string
|
|
description: Full formatted address
|
|
fetch_timestamp:
|
|
range: datetime
|
|
description: When data was fetched
|
|
expected_country:
|
|
range: string
|
|
description: Expected country code
|
|
returned_country:
|
|
range: string
|
|
description: Country code actually returned by Google Maps
|
|
website:
|
|
range: uri
|
|
description: Website URL from Google Maps
|
|
latitude:
|
|
range: float
|
|
description: Latitude coordinate
|
|
longitude:
|
|
range: float
|
|
description: Longitude coordinate
|
|
enriched_at:
|
|
range: datetime
|
|
description: When enrichment was performed
|