File tree Expand file tree Collapse file tree 3 files changed +504
-7
lines changed Expand file tree Collapse file tree 3 files changed +504
-7
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,14 @@ rdf.formats.import(pretty)
15
15
16
16
const ignore = new Set ( [
17
17
'shacl12-core/5' , // can be removed when https://github.com/rubensworks/jsonld-streaming-parser.js/issues/130 is fixed
18
- 'shacl12-core/74' // can be removed when RDF/JS parser and serializer support RDF 1.2
18
+ 'shacl12-core/74' , // can be removed when RDF/JS parser and serializer support RDF 1.2
19
+ 'shacl12-sparql/3' , // can be removed when https://github.com/rubensworks/jsonld-streaming-parser.js/issues/130 is fixed
20
+ 'shacl12-sparql/6' , // can be removed when https://github.com/rubensworks/jsonld-streaming-parser.js/issues/130 is fixed
19
21
] )
20
22
21
23
const jsonldContext = {
22
24
'@context' : {
25
+ owl : 'http://www.w3.org/2002/07/owl#' ,
23
26
rdf : 'http://www.w3.org/1999/02/22-rdf-syntax-ns#' ,
24
27
rdfs : 'http://www.w3.org/2000/01/rdf-schema#' ,
25
28
sh : 'http://www.w3.org/ns/shacl#' ,
@@ -29,6 +32,7 @@ const jsonldContext = {
29
32
}
30
33
31
34
const turtlePrefixes = `
35
+ @prefix owl: <http://www.w3.org/2002/07/owl#>.
32
36
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
33
37
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
34
38
@prefix sh: <http://www.w3.org/ns/shacl#>.
Original file line number Diff line number Diff line change @@ -610,6 +610,10 @@ <h3>Document Conventions</h3>
610
610
< th > Prefix</ th >
611
611
< th > Namespace</ th >
612
612
</ tr >
613
+ < tr >
614
+ < td > < code > owl:</ code > </ td >
615
+ < td > < code > http://www.w3.org/2002/07/owl#</ code > </ td >
616
+ </ tr >
613
617
< tr >
614
618
< td > < code > rdf:</ code > </ td >
615
619
< td > < code > http://www.w3.org/1999/02/22-rdf-syntax-ns#</ code > </ td >
@@ -637,6 +641,7 @@ <h3>Document Conventions</h3>
637
641
</ p >
638
642
< pre class ="jsonld "> {
639
643
"@context": {
644
+ "owl": "http://www.w3.org/2002/07/owl#",
640
645
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
641
646
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
642
647
"sh": "http://www.w3.org/ns/shacl#",
You can’t perform that action at this time.
0 commit comments