Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #20 from rdfjs/namespace
Browse files Browse the repository at this point in the history
feat: added initial Turtle file to define the namespace
  • Loading branch information
bergos authored Sep 3, 2023
2 parents 85fd9b3 + 8e15dda commit ba6e3c5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions shaclui.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
@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 shui: <https://rdf.js.org/shacl-ui#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.

<https://rdf.js.org/shacl-ui> a owl:Ontology;
rdfs:label "SHACL-UI Vocabulary";
owl:imports sh:;
sh:declare [
sh:namespace "http://www.w3.org/2002/07/owl#"^^xsd:anyURI;
sh:prefix "owl"
], [
sh:namespace "http://www.w3.org/1999/02/22-rdf-syntax-ns#"^^xsd:anyURI;
sh:prefix "rdf"
], [
sh:namespace "http://www.w3.org/2000/01/rdf-schema#"^^xsd:anyURI;
sh:prefix "rdfs"
], [
sh:namespace "http://www.w3.org/ns/shacl#"^^xsd:anyURI;
sh:prefix "sh"
], [
sh:namespace "https://rdf.js.org/shacl-ui#"^^xsd:anyURI;
sh:prefix "shui"
], [
sh:namespace "http://www.w3.org/2001/XMLSchema#"^^xsd:anyURI;
sh:prefix "xsd"
].

0 comments on commit ba6e3c5

Please sign in to comment.