payment:PaymentIntent leaf node


URI

https://w3id.org/agent-ontology/payment#PaymentIntent

Label

Payment Intent

Description

A semantic expression of an intent to transfer value from one agent to another.

Superclasses (1)

Usage

Instances of payment:PaymentIntent can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class payment:PaymentIntent
payment:amount owl:DatatypeProperty xsd:decimal
payment:reason owl:DatatypeProperty xsd:string
payment:unit owl:DatatypeProperty xsd:string
payment:hasSettlementInterface owl:ObjectProperty payment:SettlementInterface
payment:payee owl:ObjectProperty core:AgentEntity
payment:payer owl:ObjectProperty core:AgentEntity
From class core:Intent
sec:IntentAlignsWithTask owl:ObjectProperty Links expressed Intent to the Task it authorizes or motivates. core:Task

Implementation

@prefix core: <https://w3id.org/agent-ontology/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix payment: <https://w3id.org/agent-ontology/payment#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

payment:PaymentIntent a owl:Class ;
    rdfs:label "Payment Intent" ;
    rdfs:comment "A semantic expression of an intent to transfer value from one agent to another." ;
    rdfs:subClassOf core:Intent .