@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:93_uniprot_created_modified_updated a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "List the created, last modified, and last sequence update dates for UniProtKB proteins."@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX up: <http://purl.uniprot.org/core/>

SELECT
  ?protein 
  ?created
  ?modified
  ?version
WHERE {
  ?protein a up:Protein ;
           up:created ?created ;
           up:modified ?modified ;
           up:version ?version .
}""" ;
    schema:keywords "entry history" , "list" ;
    schema:target <https://sparql.uniprot.org/sparql/> .

