@prefix ex: <https://sparql.uniprot.org/.well-known/sparql-examples/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

ex:24 a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "Find the release number of the UniProt data that is currently being queried"@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """SELECT ?version
FROM <https://sparql.uniprot.org/.well-known/void>
WHERE
{
    [] <http://purl.org/pav/version> ?version
}""" ;
    schema:keywords "release number" ;
    schema:target <https://sparql.uniprot.org/sparql/> .

