1
0

downgrade to kirby v3

This commit is contained in:
Philip Wagner
2024-09-01 10:47:15 +02:00
parent a4b2aece7b
commit af86acb7a1
1085 changed files with 54743 additions and 65042 deletions

View 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"
}
]
}

View 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" }
]
}

View 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"
}
}

View 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" }
]
}
]

View 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" }
]
}
]
}

View 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" }
]
}

View 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"
}
]