What is jsonld?
The jsonld package is a JavaScript library for working with JSON-LD, a JSON-based format for representing linked data. It provides tools for transforming JSON-LD documents, compacting, expanding, and framing data, and converting between JSON-LD and other RDF serializations.
What are jsonld's main functionalities?
Compacting
Compacting a JSON-LD document means transforming it into a more compact form using a context. This is useful for reducing the size of the data and making it easier to read.
const jsonld = require('jsonld');
const doc = {
"@context": {
"name": "http://schema.org/name",
"homepage": {
"@id": "http://schema.org/url",
"@type": "@id"
}
},
"name": "Manu Sporny",
"homepage": "http://manu.sporny.org/"
};
const context = {
"name": "http://schema.org/name",
"url": "http://schema.org/url"
};
jsonld.compact(doc, context).then(compacted => {
console.log(JSON.stringify(compacted, null, 2));
});
Expanding
Expanding a JSON-LD document means transforming it into a fully expanded form where all terms are expressed in their full IRI form. This is useful for processing data in a more uniform way.
const jsonld = require('jsonld');
const doc = {
"@context": {
"name": "http://schema.org/name",
"homepage": {
"@id": "http://schema.org/url",
"@type": "@id"
}
},
"name": "Manu Sporny",
"homepage": "http://manu.sporny.org/"
};
jsonld.expand(doc).then(expanded => {
console.log(JSON.stringify(expanded, null, 2));
});
Framing
Framing a JSON-LD document allows you to extract a specific subgraph of the data, organized according to a frame. This is useful for extracting and presenting data in a specific structure.
const jsonld = require('jsonld');
const doc = {
"@context": {
"name": "http://schema.org/name",
"homepage": {
"@id": "http://schema.org/url",
"@type": "@id"
}
},
"@graph": [
{
"@id": "_:b0",
"name": "Manu Sporny",
"homepage": "http://manu.sporny.org/"
}
]
};
const frame = {
"@context": {
"name": "http://schema.org/name",
"homepage": {
"@id": "http://schema.org/url",
"@type": "@id"
}
},
"@type": "http://schema.org/Person"
};
jsonld.frame(doc, frame).then(framed => {
console.log(JSON.stringify(framed, null, 2));
});
Other packages similar to jsonld
rdflib
rdflib is a library for working with RDF data in JavaScript. It provides similar functionalities to jsonld, such as parsing and serializing RDF data, but it is more focused on RDF in general rather than specifically on JSON-LD. It is a more comprehensive library for RDF data manipulation.
rdf-ext
rdf-ext is a modular and extensible library for working with RDF data in JavaScript. It provides a set of tools for parsing, serializing, and manipulating RDF data. While it supports JSON-LD, it is designed to work with various RDF formats and provides a more flexible approach to RDF data handling compared to jsonld.
jsonld.js
Introduction
This library is an implementation of the JSON-LD specification in
JavaScript.
JSON, as specified in RFC7159, is a simple language for representing
objects on the Web. Linked Data is a way of describing content across
different documents or Web sites. Web resources are described using
IRIs, and typically are dereferencable entities that may be used to find
more information, creating a "Web of Knowledge". JSON-LD is intended
to be a simple publishing method for expressing not only Linked Data in
JSON, but for adding semantics to existing JSON.
JSON-LD is designed as a light-weight syntax that can be used to express
Linked Data. It is primarily intended to be a way to express Linked Data
in JavaScript and other Web-based programming environments. It is also
useful when building interoperable Web Services and when storing Linked
Data in JSON-based document storage engines. It is practical and
designed to be as simple as possible, utilizing the large number of JSON
parsers and existing code that is in use today. It is designed to be
able to express key-value pairs, RDF data, RDFa data,
Microformats data, and Microdata. That is, it supports every
major Web-based structured data model in use today.
The syntax does not require many applications to change their JSON, but
easily add meaning by adding context in a way that is either in-band or
out-of-band. The syntax is designed to not disturb already deployed
systems running on JSON, but provide a smooth migration path from JSON
to JSON with added semantics. Finally, the format is intended to be fast
to parse, fast to generate, stream-based and document-based processing
compatible, and require a very small memory footprint in order to operate.
Installation
node.js + npm
npm install jsonld
const jsonld = require('jsonld');
Browser (AMD) + npm
npm install jsonld
Use your favorite technology to load node_modules/dist/jsonld.min.js
.
Browser + script tag
<script src="//cdnjs.cloudflare.com/ajax/libs/jsonld/0.5.0/jsonld.min.js"></script>
See https://cdnjs.com/libraries/jsonld for the the latest available cdnjs version.
JSPM
jspm install npm:jsonld
import * as jsonld from 'jsonld';
import {promises} from 'jsonld';
import {JsonLdProcessor} from 'jsonld';
Examples
var doc = {
"http://schema.org/name": "Manu Sporny",
"http://schema.org/url": {"@id": "http://manu.sporny.org/"},
"http://schema.org/image": {"@id": "http://manu.sporny.org/images/manu.png"}
};
var context = {
"name": "http://schema.org/name",
"homepage": {"@id": "http://schema.org/url", "@type": "@id"},
"image": {"@id": "http://schema.org/image", "@type": "@id"}
};
jsonld.compact(doc, context, function(err, compacted) {
console.log(JSON.stringify(compacted, null, 2));
});
jsonld.compact('http://example.org/doc', 'http://example.org/context', ...);
jsonld.expand(compacted, function(err, expanded) {
});
jsonld.expand('http://example.org/doc', ...);
jsonld.flatten(doc, (err, flattened) => {
});
jsonld.frame(doc, frame, (err, framed) => {
});
jsonld.canonize(doc, {
algorithm: 'URDNA2015',
format: 'application/nquads'
}, (err, canonized) => {
});
jsonld.toRDF(doc, {format: 'application/nquads'}, (err, nquads) => {
});
jsonld.fromRDF(nquads, {format: 'application/nquads'}, (err, doc) => {
});
jsonld.registerRDFParser(contentType, (input, callback) => {
callback(err, dataset);
});
jsonld.registerRDFParser(contentType, input => {
return dataset;
});
const compacted = await jsonld.compact(doc, context);
const expanded = await jsonld.expand(doc);
const flattened = await jsonld.flatten(doc);
const framed = await jsonld.frame(doc, frame);
const canonized = await jsonld.canonize(doc, {format: 'application/nquads'});
const rdf = await jsonld.toRDF(doc, {format: 'application/nquads'});
const doc = await jsonld.fromRDF(nquads, {format: 'application/nquads'});
jsonld.registerRDFParser(contentType, async input => {
return new Promise(...);
});
const CONTEXTS = {
"http://example.com": {
"@context": ...
}, ...
};
const nodeDocumentLoader = jsonld.documentLoaders.node();
const customLoader = (url, callback) => {
if(url in CONTEXTS) {
return callback(
null, {
contextUrl: null,
document: CONTEXTS[url],
documentUrl: url
});
}
nodeDocumentLoader(url, callback);
};
jsonld.documentLoader = customLoader;
const compacted = await jsonld.compact(
doc, context, {documentLoader: customLoader});
Related Modules
- jsonld-cli: A command line interface tool called
jsonld
that exposes
most of the basic jsonld.js API. - jsonld-request: A module that can read data from stdin, URLs, and files
and in various formats and return JSON-LD.
Commercial Support
Commercial support for this library is available upon request from
Digital Bazaar: support@digitalbazaar.com
Source
The source code for the JavaScript implementation of the JSON-LD API
is available at:
http://github.com/digitalbazaar/jsonld.js
Tests
This library includes a sample testing utility which may be used to verify
that changes to the processor maintain the correct output.
The main test suites are included in external repositories. Check out each of
the following:
https://github.com/json-ld/json-ld.org
https://github.com/json-ld/normalization
They should be sibling directories of the jsonld.js directory or in a
test-suites
dir. To clone shallow copies into the test-suites
dir you can
use the following:
npm run fetch-test-suites
Node.js tests can be run with a simple command:
npm test
If you installed the test suites elsewhere, or wish to run other tests, use
the JSONLD_TESTS
environment var:
JSONLD_TESTS="/tmp/org/test-suites /tmp/norm/tests" npm test
Browser testing can be done with Karma:
npm test-karma
npm test-karma -- --browsers Firefox,Chrome
Code coverage of node tests can be generated in coverage/
:
npm run coverage
The Mocha output reporter can be changed to min, dot, list, nyan, etc:
REPORTER=dot npm test
Remote context tests are also available:
# run the context server in the background or another terminal
node tests/remote-context-server.js
JSONLD_TESTS=./tests npm test
To generate earl reports:
# generate the earl report for node.js
EARL=earl-node.jsonld npm test
# generate the earl report for the browser
EARL=earl-firefox.jsonld npm test-karma -- --browser Firefox