Skip to content

Commit 52903ba

Browse files
Merge pull request #52 from kg-construct/test-cases-html
test-cases: add HTML view
2 parents 4fa0c83 + 97a355c commit 52903ba

File tree

44 files changed

+7413
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+7413
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
## RMLTC-CC-0001-Alt
2+
3+
**Title**: Generate a rdf:Alt as an object
4+
5+
**Description**: Tests if a rdf:Alt is generated as an object
6+
7+
**Error expected?** No
8+
9+
**Input**
10+
[http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-Alt/Friends.json](http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-Alt/Friends.json)
11+
12+
**Mapping**
13+
```
14+
@prefix rml: <http://w3id.org/rml/>.
15+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
16+
@prefix ex: <http://example.com/ns#>.
17+
@base <http://example.com/>.
18+
19+
<#TM> a rml:TriplesMap;
20+
rml:logicalSource [
21+
rml:source _:b738439 ;
22+
rml:referenceFormulation rml:JSONPath ;
23+
rml:iterator "$.*" ;
24+
] ;
25+
26+
rml:subjectMap [
27+
rml:template "e/{$.id}" ;
28+
] ;
29+
30+
rml:predicateObjectMap [
31+
rml:predicate ex:with ;
32+
rml:objectMap [
33+
rml:gather ( [ rml:reference "$.values.*" ; ] ) ;
34+
rml:gatherAs rdf:Alt ;
35+
] ;
36+
] ;
37+
.
38+
39+
_:b738439 a rml:RelativePathSource ;
40+
rml:path "data.json" .
41+
```
42+
43+
**Output**
44+
```
45+
<http://example.com/base/e/a> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b1 .
46+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> .
47+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "1" .
48+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "2" .
49+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "3" .
50+
51+
<http://example.com/base/e/b> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b2 .
52+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> .
53+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "4" .
54+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "5" .
55+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "6" .
56+
57+
<http://example.com/base/e/c> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b3 .
58+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt> .
59+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "7" .
60+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "8" .
61+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "9" .
62+
63+
```
64+
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
## RMLTC-CC-0001-Bag
2+
3+
**Title**: Generate a rdf:Bag as an object
4+
5+
**Description**: Tests if a rdf:Bag is generated as an object
6+
7+
**Error expected?** No
8+
9+
**Input**
10+
[http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-Bag/Friends.json](http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-Bag/Friends.json)
11+
12+
**Mapping**
13+
```
14+
@prefix rml: <http://w3id.org/rml/>.
15+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
16+
@prefix ex: <http://example.com/ns#>.
17+
@base <http://example.com/>.
18+
19+
<#TM> a rml:TriplesMap;
20+
rml:logicalSource [
21+
rml:source _:b738439 ;
22+
rml:referenceFormulation rml:JSONPath ;
23+
rml:iterator "$.*" ;
24+
] ;
25+
26+
rml:subjectMap [
27+
rml:template "e/{$.id}" ;
28+
] ;
29+
30+
rml:predicateObjectMap [
31+
rml:predicate ex:with ;
32+
rml:objectMap [
33+
rml:gather ( [ rml:reference "$.values.*" ; ] ) ;
34+
rml:gatherAs rdf:Bag ;
35+
] ;
36+
] ;
37+
.
38+
39+
_:b738439 a rml:RelativePathSource ;
40+
rml:path "data.json" .
41+
```
42+
43+
**Output**
44+
```
45+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> .
46+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "5" .
47+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> .
48+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> .
49+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "9" .
50+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "2" .
51+
<http://example.com/base/e/b> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b2 .
52+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "1" .
53+
<http://example.com/base/e/c> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b3 .
54+
<http://example.com/base/e/a> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b1 .
55+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "4" .
56+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "7" .
57+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "6" .
58+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "3" .
59+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "8" .
60+
```
61+
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
## RMLTC-CC-0001-List
2+
3+
**Title**: Generate a rdf:List as an object
4+
5+
**Description**: Tests if a rdf:List is generated as an object
6+
7+
**Error expected?** No
8+
9+
**Input**
10+
[http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-List/Friends.json](http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-List/Friends.json)
11+
12+
**Mapping**
13+
```
14+
@prefix rml: <http://w3id.org/rml/>.
15+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
16+
@prefix ex: <http://example.com/ns#>.
17+
@base <http://example.com/>.
18+
19+
<#TM> a rml:TriplesMap;
20+
rml:logicalSource [
21+
rml:source _:b738439 ;
22+
rml:referenceFormulation rml:JSONPath ;
23+
rml:iterator "$.*" ;
24+
] ;
25+
26+
rml:subjectMap [
27+
rml:template "e/{$.id}" ;
28+
] ;
29+
30+
rml:predicateObjectMap [
31+
rml:predicate ex:with ;
32+
rml:objectMap [
33+
rml:gather ( [ rml:reference "$.values.*" ; ] ) ;
34+
rml:gatherAs rdf:List ;
35+
] ;
36+
] ;
37+
.
38+
39+
_:b738439 a rml:RelativePathSource ;
40+
rml:path "data.json" .
41+
```
42+
43+
**Output**
44+
```
45+
<http://example.com/base/e/a> <http://example.com/ns#with> _:n988e0f11d19c486fa3b3255f94c9b3bab1 .
46+
_:n988e0f11d19c486fa3b3255f94c9b3bab1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "1" .
47+
_:n988e0f11d19c486fa3b3255f94c9b3bab1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n988e0f11d19c486fa3b3255f94c9b3bab2 .
48+
_:n988e0f11d19c486fa3b3255f94c9b3bab2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "2" .
49+
_:n988e0f11d19c486fa3b3255f94c9b3bab2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n988e0f11d19c486fa3b3255f94c9b3bab3 .
50+
_:n988e0f11d19c486fa3b3255f94c9b3bab3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "3" .
51+
_:n988e0f11d19c486fa3b3255f94c9b3bab3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
52+
53+
<http://example.com/base/e/b> <http://example.com/ns#with> _:n988e0f11d19c486fa3b3255f94c9b3bab4 .
54+
_:n988e0f11d19c486fa3b3255f94c9b3bab4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "4" .
55+
_:n988e0f11d19c486fa3b3255f94c9b3bab4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n988e0f11d19c486fa3b3255f94c9b3bab5 .
56+
_:n988e0f11d19c486fa3b3255f94c9b3bab5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "5" .
57+
_:n988e0f11d19c486fa3b3255f94c9b3bab5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n988e0f11d19c486fa3b3255f94c9b3bab6 .
58+
_:n988e0f11d19c486fa3b3255f94c9b3bab6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "6" .
59+
_:n988e0f11d19c486fa3b3255f94c9b3bab6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
60+
61+
<http://example.com/base/e/c> <http://example.com/ns#with> _:n988e0f11d19c486fa3b3255f94c9b3bab7 .
62+
_:n988e0f11d19c486fa3b3255f94c9b3bab7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "7" .
63+
_:n988e0f11d19c486fa3b3255f94c9b3bab7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n988e0f11d19c486fa3b3255f94c9b3bab8 .
64+
_:n988e0f11d19c486fa3b3255f94c9b3bab8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "8" .
65+
_:n988e0f11d19c486fa3b3255f94c9b3bab8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n988e0f11d19c486fa3b3255f94c9b3bab9 .
66+
_:n988e0f11d19c486fa3b3255f94c9b3bab9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "9" .
67+
_:n988e0f11d19c486fa3b3255f94c9b3bab9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
68+
69+
```
70+
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
## RMLTC-CC-0001-Seq
2+
3+
**Title**: Generate a rdf:Seq as an object
4+
5+
**Description**: Tests if a rdf:Seq is generated as an object
6+
7+
**Error expected?** No
8+
9+
**Input**
10+
[http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-Seq/Friends.json](http://w3id.org/rml/resources/rml-io/RMLTC-CC-0001-Seq/Friends.json)
11+
12+
**Mapping**
13+
```
14+
@prefix rml: <http://w3id.org/rml/>.
15+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
16+
@prefix ex: <http://example.com/ns#>.
17+
@base <http://example.com/>.
18+
19+
<#TM> a rml:TriplesMap;
20+
rml:logicalSource [
21+
rml:source _:b738439 ;
22+
rml:referenceFormulation rml:JSONPath ;
23+
rml:iterator "$.*" ;
24+
] ;
25+
26+
rml:subjectMap [
27+
rml:template "e/{$.id}" ;
28+
] ;
29+
30+
rml:predicateObjectMap [
31+
rml:predicate ex:with ;
32+
rml:objectMap [
33+
rml:gather ( [ rml:reference "$.values.*" ; ] ) ;
34+
rml:gatherAs rdf:Seq ;
35+
] ;
36+
] ;
37+
.
38+
39+
_:b738439 a rml:RelativePathSource ;
40+
rml:path "data.json" .
41+
```
42+
43+
**Output**
44+
```
45+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> .
46+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "5" .
47+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> .
48+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> .
49+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "9" .
50+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "2" .
51+
<http://example.com/base/e/b> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b2 .
52+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "1" .
53+
<http://example.com/base/e/c> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b3 .
54+
<http://example.com/base/e/a> <http://example.com/ns#with> _:nc808fbd2e11a4baa939c61c8210b5909b1 .
55+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "4" .
56+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "7" .
57+
_:nc808fbd2e11a4baa939c61c8210b5909b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "6" .
58+
_:nc808fbd2e11a4baa939c61c8210b5909b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "3" .
59+
_:nc808fbd2e11a4baa939c61c8210b5909b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "8" .
60+
```
61+
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
## RMLTC-CC-0002-Bag
2+
3+
**Title**: Generate a named rdf:Bag as an object
4+
5+
**Description**: Tests if a named rdf:Bag is generated as an object
6+
7+
**Error expected?** No
8+
9+
**Input**
10+
[http://w3id.org/rml/resources/rml-io/RMLTC-CC-0002-Bag/Friends.json](http://w3id.org/rml/resources/rml-io/RMLTC-CC-0002-Bag/Friends.json)
11+
12+
**Mapping**
13+
```
14+
@prefix rml: <http://w3id.org/rml/>.
15+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
16+
@prefix ex: <http://example.com/ns#>.
17+
@base <http://example.com/>.
18+
19+
<#TM> a rml:TriplesMap;
20+
rml:logicalSource [
21+
rml:source _:b738439 ;
22+
rml:referenceFormulation rml:JSONPath ;
23+
rml:iterator "$.*" ;
24+
] ;
25+
26+
rml:subjectMap [
27+
rml:template "e/{$.id}" ;
28+
] ;
29+
30+
rml:predicateObjectMap [
31+
rml:predicate ex:with ;
32+
rml:objectMap [
33+
rml:template "c/{$.id}" ;
34+
rml:gather ( [ rml:reference "$.values.*" ; ] ) ;
35+
rml:gatherAs rdf:Bag ;
36+
] ;
37+
] ;
38+
.
39+
40+
_:b738439 a rml:RelativePathSource ;
41+
rml:path "data.json" .
42+
```
43+
44+
**Output**
45+
```
46+
<http://example.com/base/c/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> .
47+
<http://example.com/base/c/c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "7" .
48+
<http://example.com/base/c/c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "8" .
49+
<http://example.com/base/c/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "2" .
50+
<http://example.com/base/e/c> <http://example.com/ns#with> <http://example.com/base/c/c> .
51+
<http://example.com/base/c/c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> .
52+
<http://example.com/base/c/b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "6" .
53+
<http://example.com/base/e/a> <http://example.com/ns#with> <http://example.com/base/c/a> .
54+
<http://example.com/base/c/c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "9" .
55+
<http://example.com/base/c/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "1" .
56+
<http://example.com/base/c/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_3> "3" .
57+
<http://example.com/base/c/b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> "4" .
58+
<http://example.com/base/e/b> <http://example.com/ns#with> <http://example.com/base/c/b> .
59+
<http://example.com/base/c/b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag> .
60+
<http://example.com/base/c/b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_2> "5" .
61+
```
62+
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
## RMLTC-CC-0002-List
2+
3+
**Title**: Generate a named rdf:List as an object
4+
5+
**Description**: Tests if a named rdf:List is generated as an object
6+
7+
**Error expected?** No
8+
9+
**Input**
10+
[http://w3id.org/rml/resources/rml-io/RMLTC-CC-0002-List/Friends.json](http://w3id.org/rml/resources/rml-io/RMLTC-CC-0002-List/Friends.json)
11+
12+
**Mapping**
13+
```
14+
@prefix rml: <http://w3id.org/rml/>.
15+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
16+
@prefix ex: <http://example.com/ns#>.
17+
@base <http://example.com/>.
18+
19+
<#TM> a rml:TriplesMap;
20+
rml:logicalSource [
21+
rml:source _:b738439 ;
22+
rml:referenceFormulation rml:JSONPath ;
23+
rml:iterator "$.*" ;
24+
] ;
25+
26+
rml:subjectMap [
27+
rml:template "e/{$.id}" ;
28+
] ;
29+
30+
rml:predicateObjectMap [
31+
rml:predicate ex:with ;
32+
rml:objectMap [
33+
rml:template "c/{$.id}" ;
34+
rml:gather ( [ rml:reference "$.values.*" ; ] ) ;
35+
rml:gatherAs rdf:List ;
36+
] ;
37+
] ;
38+
.
39+
40+
_:b738439 a rml:RelativePathSource ;
41+
rml:path "data.json" .
42+
```
43+
44+
**Output**
45+
```
46+
_:nb73dd869d6bb47a5b865ee632fe27453b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:nb73dd869d6bb47a5b865ee632fe27453b2 .
47+
<http://example.com/base/e/c> <http://example.com/ns#with> <http://example.com/base/c/c> .
48+
<http://example.com/base/c/c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "7" .
49+
_:nb73dd869d6bb47a5b865ee632fe27453b5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "8" .
50+
_:nb73dd869d6bb47a5b865ee632fe27453b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:nb73dd869d6bb47a5b865ee632fe27453b4 .
51+
_:nb73dd869d6bb47a5b865ee632fe27453b6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
52+
<http://example.com/base/e/a> <http://example.com/ns#with> <http://example.com/base/c/a> .
53+
_:nb73dd869d6bb47a5b865ee632fe27453b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "5" .
54+
<http://example.com/base/c/b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:nb73dd869d6bb47a5b865ee632fe27453b3 .
55+
_:nb73dd869d6bb47a5b865ee632fe27453b4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "6" .
56+
_:nb73dd869d6bb47a5b865ee632fe27453b4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
57+
_:nb73dd869d6bb47a5b865ee632fe27453b5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:nb73dd869d6bb47a5b865ee632fe27453b6 .
58+
_:nb73dd869d6bb47a5b865ee632fe27453b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
59+
_:nb73dd869d6bb47a5b865ee632fe27453b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "2" .
60+
_:nb73dd869d6bb47a5b865ee632fe27453b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "3" .
61+
<http://example.com/base/c/b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "4" .
62+
<http://example.com/base/c/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:nb73dd869d6bb47a5b865ee632fe27453b1 .
63+
<http://example.com/base/c/c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:nb73dd869d6bb47a5b865ee632fe27453b5 .
64+
_:nb73dd869d6bb47a5b865ee632fe27453b6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "9" .
65+
<http://example.com/base/e/b> <http://example.com/ns#with> <http://example.com/base/c/b> .
66+
<http://example.com/base/c/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "1" .
67+
```
68+

0 commit comments

Comments
 (0)