Closed
Description
See: digitalbazaar/jsonld.js#72
It would be helpful to have the ability to use @language within an object as a shorthand for "@context": {"@language": "..."} ... for instance... make:
{
"@language": "en",
"displayName": "foo"
}
equivalent to:
{
"@context": {"@language": "en"},
"displayName": "foo"
}