SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
Wholesale
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
DrugCostCategory
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
The drug's cost represents the wholesale acquisition cost of the drug.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000