SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
Blog
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Class
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a "weblog". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloquially referred to by the same term.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a "weblog". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloquially referred to by the same term.