-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Some recurrent patterns within a JSON-LD documents could be summarized as a context entry and serialized in a more compact way using a local context.
E.g.
{
"@graph": [
{ "p": { "@value": "2", "@type": "xsd:unsignedInt" } },
{ "p": { "@value": "4", "@type": "xsd:unsignedInt" } }
]
}is equivalent to:
{
"@context": {
"p": { "@type": "xsd:unsignedInt" }
},
"@graph": [
{ "p": 2 },
{ "p": 4 }
]
}Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Non TR Work