SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
CDCPMDRecord
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Class
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
A CDCPMDRecord is a data structure representing a record in a CDC tabular data format
used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative
definitions used as the source here.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
A CDCPMDRecord is a data structure representing a record in a CDC tabular data format
used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative
definitions used as the source here.
Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.