-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
There has been some discussions about how RDF-star can help with ordered multiple values in RDF. Example:
<#book> dct:creator <#alice> {| ex:order 1 |};
dct:creator <#bob> {| ex:order 2 |}.
I would like a new kind of container in JSON-LD that would translate to the triples above. The compact form could look like that:
{ "@context": {
"creator": {
"@id": "http://purl.org/dc/terms/creator",
"@type": "@id",
"@container": [ "@ordered"]
}
},
"@id": "#book", "creator": [ "#alice", "#bob" ]
}
and the expanded form could look like
{
"#alice": {
"http://purl.org/dc/terms/creator": {
"@ordered": [
{ "@id": "#alice" },
{ "@id": "#bob" },
]
}
}
}
Metadata
Metadata
Assignees
Labels
No labels