-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support JSON-LD 1.1 #203
Comments
In particular this example with localized { "@context": {
"oa": "http://www.w3.org/ns/oa#",
"link": "https://tools.ietf.org/vocab/rfc5988#",
"rel": {
"@id": "link:rel",
"@type": "@vocab",
"@context": {"@vocab": "https://www.iana.org/assignments/link-relations/"}
},
"anchor": {"@id": "link:anchor", "@type": "@id"},
"href": {"@id": "link:href", "@type": "@id"},
"title": {
"@id": "http://purl.org/dc/terms/title"
}
},
"@graph": [
{"href" : "http://example.com/foo",
"title": "Fred",
"meh": "fred",
"anchor" : "http://example.net/bar",
"rel" : [ "next" , "http://example.net/linkrel" ] }
]
} http://rdf.greggkellogg.net/distiller will correctly honour the inner []
<https://tools.ietf.org/vocab/rfc5988#rel> <https://www.iana.org/assignments/link-relations/next>,
<http://example.net/linkrel> . |
Spec: Example: http://tinyurl.com/y8ejvou9 |
At the moment none of 1.1 has been implemented due to lack of time and resources. We'll get to 1.1 as soon as we can. We want to use the fancy new features too! Any help would be appreciated. The 0.5.x branch has progress on other issues. |
1.0.0 released supporting 1.1 draft features. |
Add support for the new features introduced in JSON-LD 1.1
The text was updated successfully, but these errors were encountered: