SELECT ?title WHERE { ?? (rdfs:label|skos:prefLabel|schema:name) ?title . }
artist
SELECT ?class WHERE { ?? (rdf:type|owl:type) ?class . }
Property
SELECT ?description WHERE { ?? (rdfs:comment|schema:description) ?description . }
The primary artist for a work
in a medium other than pencils or digital line art--for example, if the
primary artwork is done in watercolors or digital paints.
SELECT ?property ?value WHERE {
BIND (?? AS ?s)
?s ?property ?value .
FILTER (isLiteral(?value))
} LIMIT 1000
The primary artist for a work
in a medium other than pencils or digital line art--for example, if the
primary artwork is done in watercolors or digital paints.