63 lines
2 KiB
YAML
63 lines
2 KiB
YAML
# WikidataContact - Contact information 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/WikidataContact
|
|
name: WikidataContact
|
|
title: WikidataContact
|
|
|
|
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#
|
|
vcard: http://www.w3.org/2006/vcard/ns#
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
|
|
default_range: string
|
|
|
|
classes:
|
|
WikidataContact:
|
|
description: >-
|
|
Contact information extracted from Wikidata including phone numbers
|
|
(P1329), email addresses (P968), and fax numbers (P2900). Supports
|
|
multiple values for phone and email fields.
|
|
|
|
Ontology mapping rationale:
|
|
- class_uri is schema:ContactPoint because this class aggregates
|
|
contact details (phone, email, fax) as Schema.org defines
|
|
- close_mappings includes vcard:Contact from vCard ontology which
|
|
serves similar purpose for contact information modeling
|
|
- related_mappings includes prov:Entity (traceable contact data)
|
|
and schema:Organization (contact info typically belongs to orgs)
|
|
class_uri: schema:ContactPoint
|
|
close_mappings:
|
|
- vcard:Contact
|
|
related_mappings:
|
|
- prov:Entity
|
|
- schema:Organization
|
|
attributes:
|
|
phone_number:
|
|
any_of:
|
|
- range: string
|
|
- range: string
|
|
multivalued: true
|
|
inlined_as_list: true
|
|
description: Phone number(s) (P1329)
|
|
email_address:
|
|
range: string
|
|
description: Email address (P968)
|
|
email:
|
|
any_of:
|
|
- range: string
|
|
- range: string
|
|
multivalued: true
|
|
inlined_as_list: true
|
|
description: Email address(es) (alias for email_address)
|
|
fax_number:
|
|
range: string
|
|
description: Fax number (P2900)
|