10 April 2026 11:21

SKOS-based editor of thesauri, lexicons, vocabularies, taxonomies, and classification schemes

_1
page-header
_2
overview-intro
_3
Vocabulary statistics
_4
explore-prompt
_5
select-children
Date Modified
10 April 2026 11:21
Description
SKOS-based editor of thesauri, lexicons, vocabularies, taxonomies, and classification schemes
Title
Unesco Thesaurus

unesco.png

FileName
unesco.png
Format
png
Sha1sum (hex)
3fd6333140bf7a78f19f6a3aa602ea79d8b572a3
Title
unesco.png
Category variable name
resourceType
Chart type
BarChart
Query
Vocabulary statistics
Series variable name
count
Title
Vocabulary statistics
Text
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>

SELECT ?resourceType ?count
WHERE {
    {
        SELECT ("Concepts" AS ?resourceType) (COUNT(DISTINCT ?resource) AS ?count)
        WHERE {
            GRAPH ?graph {
                ?resource a skos:Concept .
            }
        }
    }
    UNION
    {
        SELECT ("Collections" AS ?resourceType) (COUNT(DISTINCT ?resource) AS ?count)
        WHERE {
            GRAPH ?graph {
                ?resource a skos:Collection .
            }
        }
    }
    UNION
    {
        SELECT ("Concept Schemes" AS ?resourceType) (COUNT(DISTINCT ?resource) AS ?count)
        WHERE {
            GRAPH ?graph {
                ?resource a skos:ConceptScheme .
            }
        }
    }
}
ORDER BY DESC(?count)
Title
Vocabulary statistics