-
Notifications
You must be signed in to change notification settings - Fork 159
Closed
Milestone
Description
If someone defines a term in the context and uses @language
, should this lock (or clear) the @language
for this term, effectively overriding any global @language
defined in the context?
For example, given:
{
"@context": {
"@language": "en",
"title": {"@id": "http://example.org/def#title"},
"title_sv": {"@id": "http://example.org/def#title", "@language": "sv"},
"name": {"@id": "http://example.org/def#name", "@language": null}
},
"@id": "http://example.org/somebody#self",
"title": "Mister",
"title_sv": "Herr",
"name": "Some Body"
}
This could produce:
@prefix : <http://example.org/def#> .
<http://example.org/somebody#self>
:title "Mister"@en, "Herr"@sv;
:name "Some Body" .