ctx:currency leaf node


URI

https://w3id.org/agent-ontology/execution-context#currency

Label

currency

Description

e.g., 'USD', 'EUR'.

Usage

DOMAINPROPERTYRANGE
ctx:Budget ctx:currency xsd:string

Implementation

@prefix ctx: <https://w3id.org/agent-ontology/execution-context#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ctx:currency a owl:DatatypeProperty ;
    rdfs:comment "e.g., 'USD', 'EUR'." ;
    rdfs:domain ctx:Budget ;
    rdfs:range xsd:string .