Submissions for Johannes Itten Linked Archive
Description
JILA is a knowledge graph centred on the estate of Bauhaus master and Swiss art theorist Johannes Itten (1888–1967). Built from over 5,200 document pages, it models a network of persons and archival documents enriched with contextual information. It integrates metadata from the Zentralbibliothek Zürich's archive, the digitisation platform e-manuscripta, and the digital catalogue raisonné of Itten's works. Biographical data from external sources such as GND, Wikidata, SIKART, and the Itten catalogue raisonné further enrich the graph, available as RDF in Turtle and NQuad formats.
3 of 3 submissions
#212
Natural Language Question
How many persons are there in this knowledge graph?
#213
Natural Language Question
What are the archival documents contained in the collection <https://resource.jila.zb.uzh.ch/collection/jila-95187b54e2064259b705e56ea24036ab>? For each document, if it has any related images (e.g. from digitisation), I'd like to have the number of images.
SPARQL Query
SELECT (COUNT(?image) as ?imageCount) ?parentLabel ?doc WHERE {
{
# Documents at 2 levels deep: subCollection -> doc
<https://resource.jila.zb.uzh.ch/collection/jila-95187b54e2064259b705e56ea24036ab> <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ?subCollection .
?subCollection <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ?doc .
?doc <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.cidoc-crm.org/cidoc-crm/E22_Human-Made_Object> .
?subCollection <http://www.w3.org/2000/01/rdf-schema#label> ?parentLabel .
}
UNION
{
# Documents at 3 levels deep: subCollection -> midCollection -> doc
<https://resource.jila.zb.uzh.ch/collection/jila-95187b54e2064259b705e56ea24036ab> <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ?subCollection .
?subCollection <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ?midCollection .
?midCollection <http://www.cidoc-crm.org/cidoc-crm/P46_is_composed_of> ?doc .
?doc <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.cidoc-crm.org/cidoc-crm/E22_Human-Made_Object> .
?midCollection <http://www.w3.org/2000/01/rdf-schema#label> ?parentLabel .
}
OPTIONAL { ?doc <http://www.cidoc-crm.org/cidoc-crm/P138i_has_representation> ?image }
}
GROUP BY ?doc ?parentLabel
ORDER BY ?parentLabel
#214
Natural Language Question
How many persons are there in this KG?
SPARQL Query
SELECT (COUNT(DISTINCT ?person) AS ?count)
WHERE {
{
?person a <http://www.cidoc-crm.org/cidoc-crm/E21_Person> .
} UNION {
?person a <https://d-nb.info/standards/elementset/gnd#DifferentiatedPerson> .
} UNION {
?person a <https://d-nb.info/standards/elementset/gnd#Person> .
}
}