downgrade to kirby v3
This commit is contained in:
36
vendor/ml/json-ld/Test/Fixtures/dataset.jsonld
vendored
Normal file
36
vendor/ml/json-ld/Test/Fixtures/dataset.jsonld
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"@context": {
|
||||
"@vocab": "http://example.com/vocab#",
|
||||
"references": { "@type": "@id" }
|
||||
},
|
||||
"@graph": [
|
||||
{
|
||||
"@id": "/node1",
|
||||
"references": [ "_:graphBn", "/named-graph" ]
|
||||
},
|
||||
{
|
||||
"@id": "_:graphBn",
|
||||
"@graph": [
|
||||
{
|
||||
"@id": "_:graphBn/node1",
|
||||
"name": "_:graphBn/node1",
|
||||
"references": [ "_:bnode", "/node1", "/named-graph/node1" ]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"@id": "/named-graph",
|
||||
"@graph": [
|
||||
{
|
||||
"@id": "/named-graph/node1",
|
||||
"name": "/named-graph/node1",
|
||||
"references": [ "_:bnode", "/node1", "_:graphBn/node1" ]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"@id": "_:bnode",
|
||||
"name": "_:bnode"
|
||||
}
|
||||
]
|
||||
}
|
||||
24
vendor/ml/json-ld/Test/Fixtures/sample-compacted.jsonld
vendored
Normal file
24
vendor/ml/json-ld/Test/Fixtures/sample-compacted.jsonld
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"@context": {
|
||||
"t1": "http://example.com/t1",
|
||||
"t2": "http://example.com/t2",
|
||||
"term1": "http://example.com/term1",
|
||||
"term2": "http://example.com/term2",
|
||||
"term3": "http://example.com/term3",
|
||||
"term4": "http://example.com/term4",
|
||||
"term5": "http://example.com/term5"
|
||||
},
|
||||
"@id": "http://example.com/id1",
|
||||
"@type": "t1",
|
||||
"term1": "v1",
|
||||
"term2": { "@value": "v2", "@type": "t2" },
|
||||
"term3": { "@value": "v3", "@language": "en" },
|
||||
"term4": 4,
|
||||
"term5": [ 50, 51 ],
|
||||
"http://example.com/term6": [
|
||||
{ "@value": "1", "@type": "t1" },
|
||||
{ "@value": "2", "@type": "t2" },
|
||||
{ "@value": "3", "@language": "en" },
|
||||
{ "@value": "4", "@language": "de" }
|
||||
]
|
||||
}
|
||||
11
vendor/ml/json-ld/Test/Fixtures/sample-context.jsonld
vendored
Normal file
11
vendor/ml/json-ld/Test/Fixtures/sample-context.jsonld
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"@context": {
|
||||
"t1": "http://example.com/t1",
|
||||
"t2": "http://example.com/t2",
|
||||
"term1": "http://example.com/term1",
|
||||
"term2": "http://example.com/term2",
|
||||
"term3": "http://example.com/term3",
|
||||
"term4": "http://example.com/term4",
|
||||
"term5": "http://example.com/term5"
|
||||
}
|
||||
}
|
||||
20
vendor/ml/json-ld/Test/Fixtures/sample-expanded.jsonld
vendored
Normal file
20
vendor/ml/json-ld/Test/Fixtures/sample-expanded.jsonld
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
[
|
||||
{
|
||||
"@id": "http://example.com/id1",
|
||||
"@type": [ "http://example.com/t1" ],
|
||||
"http://example.com/term1": [ {"@value": "v1"} ],
|
||||
"http://example.com/term2": [ {"@value": "v2", "@type": "http://example.com/t2"} ],
|
||||
"http://example.com/term3": [ {"@value": "v3", "@language": "en"} ],
|
||||
"http://example.com/term4": [ {"@value": 4} ],
|
||||
"http://example.com/term5": [
|
||||
{ "@value": 50 },
|
||||
{ "@value": 51 }
|
||||
],
|
||||
"http://example.com/term6": [
|
||||
{ "@value": "1", "@type": "http://example.com/t1" },
|
||||
{ "@value": "2", "@type": "http://example.com/t2" },
|
||||
{ "@value": "3", "@language": "en" },
|
||||
{ "@value": "4", "@language": "de" }
|
||||
]
|
||||
}
|
||||
]
|
||||
34
vendor/ml/json-ld/Test/Fixtures/sample-flattened.jsonld
vendored
Normal file
34
vendor/ml/json-ld/Test/Fixtures/sample-flattened.jsonld
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"@context": {
|
||||
"t1": "http://example.com/t1",
|
||||
"t2": "http://example.com/t2",
|
||||
"term1": "http://example.com/term1",
|
||||
"term2": "http://example.com/term2",
|
||||
"term3": "http://example.com/term3",
|
||||
"term4": "http://example.com/term4",
|
||||
"term5": "http://example.com/term5"
|
||||
},
|
||||
"@graph": [
|
||||
{
|
||||
"@id": "http://example.com/id1",
|
||||
"@type": "t1",
|
||||
"term1": "v1",
|
||||
"term2": {
|
||||
"@type": "t2",
|
||||
"@value": "v2"
|
||||
},
|
||||
"term3": {
|
||||
"@language": "en",
|
||||
"@value": "v3"
|
||||
},
|
||||
"term4": 4,
|
||||
"term5": [ 50, 51 ],
|
||||
"http://example.com/term6": [
|
||||
{ "@value": "1", "@type": "t1" },
|
||||
{ "@value": "2", "@type": "t2" },
|
||||
{ "@value": "3", "@language": "en" },
|
||||
{ "@value": "4", "@language": "de" }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
22
vendor/ml/json-ld/Test/Fixtures/sample-in.jsonld
vendored
Normal file
22
vendor/ml/json-ld/Test/Fixtures/sample-in.jsonld
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"@context": {
|
||||
"t1": "http://example.com/t1",
|
||||
"t2": "http://example.com/t2",
|
||||
"term1": "http://example.com/term1",
|
||||
"term3": "http://example.com/term3",
|
||||
"term5": "http://example.com/term5"
|
||||
},
|
||||
"@id": "http://example.com/id1",
|
||||
"@type": "t1",
|
||||
"term1": "v1",
|
||||
"http://example.com/term2": { "@value": "v2", "@type": "t2" },
|
||||
"term3": { "@value": "v3", "@language": "en" },
|
||||
"http://example.com/term4": 4,
|
||||
"term5": [ 50, 51 ],
|
||||
"http://example.com/term6": [
|
||||
{ "@value": "1", "@type": "t1" },
|
||||
{ "@value": "2", "@type": "t2" },
|
||||
{ "@value": "3", "@language": "en" },
|
||||
{ "@value": "4", "@language": "de" }
|
||||
]
|
||||
}
|
||||
23
vendor/ml/json-ld/Test/Fixtures/sample-serialized-document.jsonld
vendored
Normal file
23
vendor/ml/json-ld/Test/Fixtures/sample-serialized-document.jsonld
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
[
|
||||
{
|
||||
"@id": "http://example.com/id1",
|
||||
"@type": [ "http://example.com/t1" ],
|
||||
"http://example.com/term1": [ {"@value": "v1"} ],
|
||||
"http://example.com/term2": [ {"@value": "v2", "@type": "http://example.com/t2"} ],
|
||||
"http://example.com/term3": [ {"@value": "v3", "@language": "en"} ],
|
||||
"http://example.com/term4": [ {"@value": 4} ],
|
||||
"http://example.com/term5": [
|
||||
{"@value": 50 },
|
||||
{"@value": 51 }
|
||||
],
|
||||
"http://example.com/term6": [
|
||||
{ "@value": "1", "@type": "http://example.com/t1" },
|
||||
{ "@value": "2", "@type": "http://example.com/t2" },
|
||||
{ "@value": "3", "@language": "en" },
|
||||
{ "@value": "4", "@language": "de" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"@id": "http://example.com/t1"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user