@prefix ex: <https://sparql.omabrowser.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:2 a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "Which species are available on OMA database and their scientific names?"@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX up: <http://purl.uniprot.org/core/>

SELECT ?species ?sciname
WHERE {
    ?species a up:Taxon ;
        up:scientificName ?sciname ;
        up:rank up:Species .
}""" ;
    schema:target <https://sparql.omabrowser.org/sparql> .

