SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
ByInvoice
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
PaymentMethodType
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
Payment by invoice, typically after the goods were delivered, equivalent to <code>http://purl.org/goodrelations/v1#ByInvoice</code>.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000