RE: Casting literals as IRIs

Hi Jindřich,


On Thursday, December 17, 2015 11:04 AM, Jindřich Mynarz wrote:
> I found that some services return JSON-LD, in which IRIs are serialized
> as literals. For example, consider the following example:
> 
> {
>   "@id": "http://mynarz.net/#jindrich",
>   "http://xmlns.com/foaf/0.1/knows": [
>      "http://ruben.verborgh.org/#me",
>      "http://richard.cyganiak.de/foaf.rdf#cygri"
>   ]
> }
> 
> The objects of foaf:knows are serialized as literals, even though they
> are IRIs.
> 
> Now, if I want to recover the objects of foaf:knows as IRIs, the
> following context is of no use:
> 
> {
>   "@context": {
>     "foaf": "http://xmlns.com/foaf/0.1/",
>     "foaf:knows": {"@type": "@id"}
>   }
> }

What about this context:

  "@context": {
    "http://xmlns.com/foaf/0.1/knows": { "@type": "@id" }
  }

Result: http://tinyurl.com/hadcx4d


HTH,
Markus


--
Markus Lanthaler
@markuslanthaler

Received on Thursday, 17 December 2015 22:53:47 UTC