- Deleted obsolete slot definitions: statement_summary, statement_text, statement_type, status_name, supersede_articles, supersede_condition, supersede_name, temporal_dynamics, total_amount, typical_contents, use_cases, was_acquired_through, was_fetched_at, was_retrieved_at. - Updated existing slot definitions for states_or_stated to enhance clarity and structure. - Introduced new classes: Article, ConditionofAccess, FinancialStatementType, MaximumQuantity, Series, Summary, Type, and their respective slots to improve schema organization and usability. - Added new slots: changes_or_changed_through, has_or_had_condition_of_access, has_or_had_heritage_type, is_or_was_part_of_series, is_or_was_retrieved_at, maximum_of_maximum to capture additional metadata and relationships.
69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
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.
|