@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix schema: <http://schema.org/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . schema:acceptedPaymentMethod a owl:ObjectProperty ; rdfs:comment "The payment method(s) accepted by seller for this offer."@en ; rdfs:domain schema:CivicStructure ; rdfs:isDefinedBy <http://schema.org/> ; rdfs:label "accepted payment method"@en ; rdfs:range schema:PaymentMethod .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

schema:acceptedPaymentMethod
    a owl:ObjectProperty ;
    rdfs:comment "The payment method(s) accepted by seller for this offer."@en ;
    rdfs:domain schema:CivicStructure ;
    rdfs:isDefinedBy <http://schema.org/> ;
    rdfs:label "accepted payment method"@en ;
    rdfs:range schema:PaymentMethod .