SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
Statement
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Class
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.