Hi All
I need to create a context that models an array of arrays, and I was wondering how to do it.
Possibility 1: "tags": {"@container": "@list", "@type": "@list" }
{
"@context": {
"@version": 1.1,
"@vocab": "http://example.org/",
"tags": {
"@container": "@list",
"@type": "@list"
}
},
"tags": [
["A", "B", "C"],
["D", "E", "F"],
["G", "H", "I"]
]
}
Possibility 2: "tags": {"@container": "@list"}
{
"@context": {
"@vocab": "http://example.org/",
"tags": {"@container": "@list"}
},
"tags": [
["A", "B", "C"],
["D", "E", "F"],
["G", "H", "I"]
]
}
Possibility 3: Other (?)
Any help greatly appreciated
Hi All
I need to create a context that models an array of arrays, and I was wondering how to do it.
Possibility 1: "tags": {"
@container": "@list", "@type": "@list" }{ "@context": { "@version": 1.1, "@vocab": "http://example.org/", "tags": { "@container": "@list", "@type": "@list" } }, "tags": [ ["A", "B", "C"], ["D", "E", "F"], ["G", "H", "I"] ] }Possibility 2: "tags": {"
@container": "@list"}{ "@context": { "@vocab": "http://example.org/", "tags": {"@container": "@list"} }, "tags": [ ["A", "B", "C"], ["D", "E", "F"], ["G", "H", "I"] ] }Possibility 3: Other (?)
Any help greatly appreciated