json-ld.org
json-ld.org copied to clipboard
JSON for Linked Data's documentation and playground site
Include some information for people wanting to get started with YAML-LD, or use -LD principles for interpreting their YAML. This can serve as the beginnings of a best practices document,...
Two things for this: * [ ] jsonld.js should either be updated or have a shim for handling `application/ld+yaml` media type and transforming JSON to/from YAML. * [ ] the...
[playground](https://json-ld.org/playground/#startTab=tab-expanded&json-ld=%7B%22%40context%22%3A%7B%22name%22%3A%7B%22%40id%22%3A%22%40nest%22%2C%22%40context%22%3A%7B%22first%22%3A%22http%3A%2F%2Fschema.org%2FgivenName%22%2C%22last%22%3A%22http%3A%2F%2Fschema.org%2FfamilyName%22%7D%7D%7D%2C%22name%22%3A%7B%22first%22%3A%22Pierre-Antoine%22%2C%22last%22%3A%22Champin%22%7D%7D) ```json { "@context": { "name": { "@id": "@nest", "@context": { "first": "http://schema.org/givenName", "last": "http://schema.org/familyName" } } }, "name": { "first": "Pierre-Antoine", "last": "Champin" } } ``` should expand to...
I'm just putting some ideas down here for how a JSON-LD patch system might be implemented. This may or may not turn into a spec we want to produce. Suppose...
It would be possible to provide a query capability using a syntax related to JSON-LD. This has been discussed on the mailing list [recently](https://lists.w3.org/Archives/Public/public-linked-json/2016Oct/0011.html) and [in the past](https://lists.w3.org/Archives/Public/public-linked-json/2012Jul/0043.html) (with other...
"taxonKey" is an `@id` and it is numeric. It is associated with a `@base`. json ```json { "gbifID":"1258202889", "protocol": "DWC_ARCHIVE", "basisOfRecord": "PRESERVED_SPECIMEN", "taxonKey": 7310533 } ``` jsonld `@context` ```jsonld {...
I have a fixed JSON structure that I can't change: ```json { "@type": "Organization", "@id": "http://example.com/id/60747862", "id": "60747862", "name": { "en": "MyName" } } ``` Now I would like to...
The [OBO](https://github.com/OBOFoundry) and [prefixcommons](https://github.com/prefixcommons) communities have been maintaining prefix libraries as JSON-LD contexts. Many of the URI's in these libraries do not end with the standard set of terminators, the...
Currently, maps of dynamic string keys can only be represented by an `rdf:JSON` literal this works for translating JSON-LD to Linked Data Dataset and vice versa but it makes the...
We have software where an object has several properties that are lists but that all map to the same property in the ontology, namely `schema:hasPart`. This all gets turned into...