1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
"head": {
"vars": [ "s" , "p" , "o" ]
} ,
"results": {
"bindings": [
{
"s": { "type": "uri" , "value": "http://example.org/s1" } ,
"p": { "type": "uri" , "value": "http://example.org/p1" } ,
"o": { "type": "uri" , "value": "http://example.org/s2" }
} ,
{
"s": { "type": "uri" , "value": "http://example.org/s2" } ,
"p": { "type": "uri" , "value": "http://example.org/p2" } ,
"o": { "type": "literal" , "value": "foo" }
} ,
{
"s": { "type": "uri" , "value": "http://example.org/s3" } ,
"p": { "type": "uri" , "value": "http://example.org/p2" } ,
"o": { "datatype": "http://www.w3.org/2001/XMLSchema#string" , "type": "typed-literal" , "value": "bar" }
} ,
{
"s": { "type": "uri" , "value": "http://example.org/s4" } ,
"p": { "type": "uri" , "value": "http://example.org/p4" } ,
"o": { "datatype": "http://www.w3.org/2001/XMLSchema#integer" , "type": "typed-literal" , "value": "4" }
} ,
{
"s": { "type": "uri" , "value": "http://example.org/s5" } ,
"p": { "type": "uri" , "value": "http://example.org/p5" } ,
"o": { "datatype": "http://www.w3.org/2001/XMLSchema#decimal" , "type": "typed-literal" , "value": "5" }
} ,
{
"s": { "type": "uri" , "value": "http://example.org/s6" } ,
"p": { "type": "uri" , "value": "http://example.org/p6" } ,
"o": { "type": "bnode" , "value": "b0" }
}
]
}
}
|