The problem is that Fuseki (when I select JSON-LD output format) creates a
@context with as many properties as there are URIs. For example
"@context" : {
"name" : {
"@id" : "example.org/vocab/name",
"@type" : ...
},
"surname" : {
"@id" : "example.org/vocab/surname",
"@type" : ...
},
"age" : {
"@id" : "example.org/vocab/age",
"@type" : ...
},
"ex": "example.org/vocab/"
}
whereas all I want is
"@context" : {
"ex": "example.org/vocab/"
}
Sent: Saturday, October 07, 2017 at 12:37 PM
From: "Andy Seaborne" <[email protected]>
To: [email protected]
Subject: Re: Change DESCRIBE @context
The result Model from DESCRIBE has the prefixes of the data and the
query. There can be multiple prefixes for the same URI.
How that gets processed by JSON-LD is another matter and I don't know
the details.
Andy