File tree Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "quad_count" : 6 ,
3+ "exact_match" : true
4+ }
Original file line number Diff line number Diff line change 1+ <http://example.org/blank_prefix#subject0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
2+ <http://example.org/blank_prefix#subject0> <http://www.w3.org/2000/01/rdf-schema#label> "subject0"@en .
3+ <http://example.org/blank_prefix#subject0> <http://example.org/blank_prefix#predicate00> <http://example.org/blank_prefix#object00> .
4+ <http://example.org/blank_prefix#subject1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
5+ <http://example.org/blank_prefix#subject1> <http://www.w3.org/2000/01/rdf-schema#label> "subject0"@en .
6+ <http://example.org/blank_prefix#subject1> <http://example.org/blank_prefix#predicate10> <http://example.org/blank_prefix#object10> .
Original file line number Diff line number Diff line change 1+ @base <http://example.org/blank_prefix> .
2+ @prefix : <http://example.org/blank_prefix#> .
3+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+ @prefix owl: <http://www.w3.org/2002/07/owl#> .
5+
6+ # A Turtle document using both a blank and a base prefix together with well
7+ # known prefixes.
8+
9+ :subject0 a owl:Class;
10+ rdfs:label " subject0" @en ;
11+ :predicate00 :object00;
12+ .
13+
14+ <#subject1> a owl:Class;
15+ rdfs:label " subject0" @en ;
16+ <#predicate10> <#object10> ;
17+ .
Original file line number Diff line number Diff line change 1+ <rdf : RDF
2+ xmlns : rdf =" http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3+ xmlns : egdo =" http://example.org/"
4+ xmlns : owl =" http://www.w3.org/2002/07/owl#"
5+ xmlns : rdfs =" http://www.w3.org/2000/01/rdf-schema#"
6+ xmlns =" http://example.org/blank_prefix#"
7+ xml : base =" http://example.org/blank_prefix" >
8+
9+ <!--
10+ An RDF/XML document using both a blank and a base prefix together with well
11+ known prefixes.
12+ -->
13+
14+ <rdf : Description rdf : about =" #subject0" >
15+ <predicate00 rdf : resource =" #object00" />
16+ <rdfs : label xml : lang =" en" >subject0</rdfs : label >
17+ <rdf : type rdf : resource =" http://www.w3.org/2002/07/owl#Class" />
18+ </rdf : Description >
19+
20+ <rdf : Description rdf : about =" #subject1" >
21+ <predicate10 rdf : resource =" #object10" />
22+ <rdfs : label xml : lang =" en" >subject0</rdfs : label >
23+ <rdf : type rdf : resource =" http://www.w3.org/2002/07/owl#Class" />
24+ </rdf : Description >
25+
26+ </rdf : RDF >
You can’t perform that action at this time.
0 commit comments