-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ontology file and use it to replace the non existing describe
- Loading branch information
1 parent
fbb3a70
commit 68ad978
Showing
6 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# baseURI: https://purl.expasy.org/sparql-examples/ontology# | ||
|
||
@prefix spex: <https://purl.expasy.org/sparql-examples/ontology#> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
<https://purl.expasy.org/sparql-examples/ontology#> a owl:Ontology ; | ||
<http://purl.org/dc/terms/license> | ||
<http://creativecommons.org/publicdomain/zero/1.0/> ; | ||
owl:versionInfo "1.0"^^xsd:string . | ||
|
||
spex:describe | ||
a rdf:Property ; | ||
rdfs:label "describe"@en ; | ||
rdfs:comment "The SPARQL describe query to execute"@en ; | ||
rdfs:domain spex:SPARQLDescribeExecutable ; | ||
rdfs:range xsd:string ; | ||
rdfs:isDefinedBy spex: . | ||
|
||
spex:SPARQLDescribeExecutable | ||
a rdfs:Class ; | ||
rdfs:label "SPARQL Describe executable"@en ; | ||
rdfs:comment "The class of SPARQL executables that are based on Describe queries"@en ; | ||
rdfs:subClassOf sh:SPARQLExecutable ; | ||
rdfs:isDefinedBy spex: . | ||
|
||
spex:federatesWith | ||
a rdf:Property ; | ||
rdfs:label "Endpoint a SPARQL Executable uses with SERVICE clauses."@en ; | ||
rdfs:range sh:SPARQLExecutable ; | ||
rdfs:comment "SPARQL endpoints used in an SPARQL executable which are not the direct target."@en ; | ||
rdfs:isDefinedBy spex: . |