Major slot migrations following slot_fixes.yaml revisions: - TimeSpan: begin_of_the_begin, begin_of_the_end, end_of_the_begin, end_of_the_end - Quantity: has_or_had_measurement_unit with MeasureUnit class - Description: has_or_had_description with Description class - URL, WikiData, Timestamp, Location, Provenance pattern classes New slots for RiC-O compliance: - Temporal: has_or_had_time_interval, calendar_system - Transfer: is_or_was_transferred, has_or_had_policy - Location: starts/ends_or_started/ended_at_location - Provenance: has_or_had_provenance_path, is_or_was_webarchived_at Archive deprecated slots per Rule 53 workflow.
73 lines
2 KiB
YAML
73 lines
2 KiB
YAML
# PaymentMethod - Payment methods accepted by an institution
|
|
# Created per slot_fixes.yaml migration for: accepts_or_accepted_payment_method
|
|
# Creation date: 2026-01-14
|
|
|
|
id: https://nde.nl/ontology/hc/classes/PaymentMethod
|
|
name: PaymentMethod
|
|
title: PaymentMethod
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
|
|
imports:
|
|
- linkml:types
|
|
|
|
default_range: string
|
|
|
|
classes:
|
|
PaymentMethod:
|
|
description: >-
|
|
A payment method accepted by an institution for tickets, services, or purchases.
|
|
|
|
**EXAMPLES**:
|
|
- Credit cards (Visa, Mastercard, Amex)
|
|
- Debit cards (Maestro, V-Pay)
|
|
- Digital payments (iDEAL, Apple Pay, Google Pay)
|
|
- Cash
|
|
- Museum passes (Museumkaart, etc.)
|
|
|
|
Used with `accepts_or_accepted` slot to indicate payment options.
|
|
|
|
class_uri: schema:PaymentMethod
|
|
|
|
attributes:
|
|
method_type:
|
|
range: string
|
|
required: true
|
|
description: >-
|
|
Type of payment method (e.g., "credit_card", "debit_card", "digital", "cash").
|
|
|
|
provider:
|
|
range: string
|
|
description: >-
|
|
Payment provider or brand (e.g., "Visa", "iDEAL", "Apple Pay").
|
|
|
|
note:
|
|
range: string
|
|
description: >-
|
|
Additional notes about this payment method.
|
|
|
|
annotations:
|
|
custodian_types: '["M", "G", "B", "H"]'
|
|
custodian_types_rationale: >-
|
|
Payment methods primarily relevant for visitor-facing institutions.
|
|
custodian_types_primary: "M"
|
|
specificity_score: 0.6
|
|
specificity_rationale: >-
|
|
Moderate-high specificity - specific to ticketing/commerce.
|
|
|
|
examples:
|
|
- value: |
|
|
PaymentMethod:
|
|
method_type: "credit_card"
|
|
provider: "Visa"
|
|
description: Visa credit card payment.
|
|
|
|
- value: |
|
|
PaymentMethod:
|
|
method_type: "digital"
|
|
provider: "iDEAL"
|
|
note: "Dutch bank transfer system"
|
|
description: iDEAL digital payment method.
|