JSON-LD 1.0 Processing Algorithms and API (original) (raw)

Abstract

This specification defines an Application Programming Interface (API) and a set of algorithms for programmatic transformations of JSON-LD documents. By expressing the data in a way that is specifically tailored to a particular use case, the processing typically becomes much simpler.

Status of This Document

This specification was published by the RDF Working Group. It is not a W3C Standard nor is it on the W3C Standards Track. Please note that under theW3C Community Final Specification Agreement (FSA) other conditions apply. Learn more aboutW3C Community and Business Groups.

This document has been under development for over 25 months in the JSON for Linking Data Community Group. The document has recently been transferred to the RDF Working Group for review, improvement, and publication along the Recommendation track. The specification has undergone significant development, review, and changes during the course of the last 25 months.

There are several independentinteroperable implementations of this specification. There is a fairly complete test suite and a live JSON-LD editor that is capable of demonstrating the features described in this document. While there will be continuous development on implementations, the test suite, and the live editor, they are believed to be mature enough to be integrated into a non-production system at this point in time. There is an expectation that they could be used in a production system within the next six months.

Issue

It is important for readers to understand that the scope of this document is currently under debate and new features may be added to the specification. Existing features may be modified heavily or removed entirely from the specification upon further review and feedback from the broader community. This is a work in progress and publication as a Working Draft does not require that all Working Group members agree on the content of the document.

There are a number of ways that one may participate in the development of this specification:

Table of Contents

1. Introduction

This section is non-normative.

This document is a detailed specification for an Application Programming Interface for the JSON-LD syntax. The document is primarily intended for the following audiences:

To understand the basics in this specification you must first be familiar with JSON, which is detailed in [RFC4627]. You must also understand the JSON-LD Syntax [JSON-LD], which is the base syntax used by all of the algorithms in this document. To understand the API and how it is intended to operate in a programming environment, it is useful to have working knowledge of the JavaScript programming language [ECMA-262] and WebIDL [WEBIDL]. To understand how JSON-LD maps to RDF, it is helpful to be familiar with the basic RDF concepts [RDF11-CONCEPTS].

2. Features

This section is non-normative.

The JSON-LD Syntax specification [JSON-LD] outlines a syntax that may be used to express Linked Data in JSON. Because there is more than one way to express Linked Data using this syntax, it is often useful to be able to transform JSON-LD documents so that they may be more easily consumed by specific applications.

The way JSON-LD allows Linked Data to be expressed in a way that is specifically tailored to a particular person or application is by providing a context. By providing a context, JSON data can be expressed in a way that is a natural fit for a particular person or application whilst also indicating how the data should be understood at a global scale. In order for people or applications to share data that was created using a context that is different from their own, a JSON-LD processor must be able to transform a document from one context to another. Instead of requiring JSON-LD processors to write specific code for every imaginablecontext switching scenario, it is much easier to specify a single algorithm that can remove any context. Similarly, another algorithm can be specified to subsequently apply anycontext. These two algorithms represent the most basic transformations of JSON-LD documents. They are referred to asexpansion and compaction, respectively.

There are four major types of transformation that are discussed in this document: expansion, compaction, flattening, and RDF conversion.

2.1 Expansion

This section is non-normative.

The algorithm that removes context is called expansion. Before performing any other transformations on a JSON-LD document, it is easiest to remove any context from it, localizing all information, and to make data structures more regular.

To get an idea of how context and data structuring affects the same data, here is an example of JSON-LD that uses only terms and is fairly compact:

Example 1: Sample JSON-LD document

{ "@context": { "name": "http://xmlns.com/foaf/0.1/name", "homepage": { "@id": "http://xmlns.com/foaf/0.1/homepage", "@type": "@id" } }, "@id": "http://me.markus-lanthaler.com/", "name": "Markus Lanthaler", "homepage": "http://www.markus-lanthaler.com/" }

The next input example uses one IRI to express a property and array to encapsulate another, but leaves the rest of the information untouched.

Example 2: Sample JSON-LD document using a IRI instead of a term to express a property

{ "@context": { "website": "http://xmlns.com/foaf/0.1/homepage" }, "@id": "http://me.markus-lanthaler.com/", "http://xmlns.com/foaf/0.1/name": "Markus Lanthaler", "website": { "@id": "http://www.markus-lanthaler.com/" } }

Note that both inputs are valid JSON-LD and both represent the same information. The difference is in their context information and in the data structures used. A JSON-LD processor can removecontext and ensure that the data is more regular by employingexpansion.

Expansion has two important goals: removing any contextual information from the document, and ensuring all values are represented in a regular form. These goals are accomplished by expanding all properties to absolute IRIs and by expressing all values in arrays inexpanded form. Expanded form is the most verbose and regular way of expressing of values in JSON-LD; all contextual information from the document is instead stored locally with each value. Running the Expansion algorithm ([expand](#widl-JsonLdProcessor-expand-void-object-object---DOMString-input-JsonLdCallback-callback-JsonLdOptions-options) operation) against the examples provided above results in the following output:

Example 3: Expanded sample document

[ { "@id": "http://me.markus-lanthaler.com/", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Markus Lanthaler" } ], "http://xmlns.com/foaf/0.1/homepage": [ { "@id": "http://www.markus-lanthaler.com/" } ] } ]

Note that in the output above all context definitions have been removed, all terms andcompact IRIs have been expanded to absoluteIRIs, and allJSON-LD values are expressed inarrays in expanded form. While the output is more verbose and difficult for a human to read, it establishes a baseline that makes JSON-LD processing easier because of its very regular structure.

2.2 Compaction

This section is non-normative.

While expansion removes context from a given input, compaction's primary function is to perform the opposite operation: to express a given input according to a particular context. Compaction applies acontext that specifically tailors the way information is expressed for a particular person or application. This simplifies applications that consume JSON or JSON-LD by expressing the data in application-specific terms, and it makes the data easier to read by humans.

Compaction uses a developer-supplied context to shorten IRIs to terms orcompact IRIs andJSON-LD values expressed inexpanded form to simple values such as strings or numbers.

For example, assume the following expanded JSON-LD input document:

Example 4: Expanded sample document

[ { "@id": "http://me.markus-lanthaler.com/", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Markus Lanthaler" } ], "http://xmlns.com/foaf/0.1/homepage": [ { "@id": "http://www.markus-lanthaler.com/" } ] } ]

Additionally, assume the following developer-supplied JSON-LDcontext:

Example 5: JSON-LD context

{ "@context": { "name": "http://xmlns.com/foaf/0.1/name", "homepage": { "@id": "http://xmlns.com/foaf/0.1/homepage", "@type": "@id" } } }

Running the Compaction Algorithm ([compact](#widl-JsonLdProcessor-compact-void-object-object---DOMString-input-object-DOMString-context-JsonLdCallback-callback-JsonLdOptions-options) operation) given the context supplied above against the JSON-LD input document provided above would result in the following output:

Example 6: Compacted sample document

{ "@context": { "name": "http://xmlns.com/foaf/0.1/name", "homepage": { "@id": "http://xmlns.com/foaf/0.1/homepage", "@type": "@id" } }, "@id": "http://me.markus-lanthaler.com/", "name": "Markus Lanthaler", "homepage": "http://www.markus-lanthaler.com/" }

Note that all IRIs have been compacted toterms as specified in the context, which has been injected into the output. While compacted output is useful to humans, it is also used to generate structures that are easy to program against. Compaction enables developers to map any expanded document into an application-specific compacted document. While the context provided above mapped http://xmlns.com/foaf/0.1/nam to name, it could also have been mapped to any other term provided by the developer.

2.3 Flattening

This section is non-normative.

While expansion ensures that a document is in a uniform structure, flattening goes a step further to ensure that the shape of the data is deterministic. In expanded documents, the properties of a singlenode may be spread across a number of differentJSON objects. By flattening a document, all properties of a node are collected in a singleJSON object and all blank nodes are labeled with a blank node identifier. This may drastically simplify the code required to process JSON-LD data in certain applications.

For example, assume the following JSON-LD input document:

Example 7: Sample JSON-LD document

{ "@context": { "name": "http://xmlns.com/foaf/0.1/name", "knows": "http://xmlns.com/foaf/0.1/knows" }, "@id": "http://me.markus-lanthaler.com/", "name": "Markus Lanthaler", "knows": [ { "name": "Dave Longley" } ] }

Running the Flattening algorithm ([flatten](#widl-JsonLdProcessor-flatten-void-object-object---DOMString-input-object-DOMString-context-JsonLdCallback-callback-JsonLdOptions-options) operation) with a context set to null to prevent compaction returns the following document:

Example 8: Flattened sample document in expanded form

[ { "@id": ":t0", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Dave Longley" } ] }, { "@id": "http://me.markus-lanthaler.com/", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Markus Lanthaler" } ], "http://xmlns.com/foaf/0.1/knows": [ { "@id": ":t0" } ] } ]

Note how in the output above all properties of a node are collected in a single JSON object and how the blank node representing "Dave Longley" has been assigned the blank node identifier _:t0.

To make it easier for humans to read or for certain applications to process it, a flattened document can be compacted by passing a context. Using the same context as the input document, the flattened and compacted document looks as follows:

Example 9: Flattened and compacted sample document

{ "@context": { "name": "http://xmlns.com/foaf/0.1/name", "knows": "http://xmlns.com/foaf/0.1/knows" }, "@graph": [ { "@id": ":t0", "name": "Dave Longley" }, { "@id": "http://me.markus-lanthaler.com/", "name": "Markus Lanthaler", "knows": { "@id": ":t0" } } ] }

Please note that the flattened and compacted result always explicitly designates the default graph by the @graph member in the top-level JSON object.

2.4 RDF Conversion

This section is non-normative.

JSON-LD can be used to serialize data expressed in RDF as described in [RDF11-CONCEPTS]. This ensures that data can be round-tripped to and from any RDF syntax without any loss in fidelity.

For example, assume the following RDF input serialized in Turtle [TURTLE]:

Example 10: Sample Turtle document

http://me.markus-lanthaler.com/ http://xmlns.com/foaf/0.1/name "Markus Lanthaler" . http://me.markus-lanthaler.com/ http://xmlns.com/foaf/0.1/homepage http://www.markus-lanthaler.com/ .

Using the Convert from RDF algorithm a developer could transform this document into expanded JSON-LD:

Example 11: Sample Turtle document converted to JSON-LD

[ { "@id": "http://me.markus-lanthaler.com/", "http://xmlns.com/foaf/0.1/name": [ { "@value": "Markus Lanthaler" } ], "http://xmlns.com/foaf/0.1/homepage": [ { "@id": "http://www.markus-lanthaler.com/" } ] } ]

Note that the output above could easily be compacted using the technique outlined in the previous section. It is also possible to transform the JSON-LD document back to RDF using the Convert to RDF algorithm.

3. Conformance

All examples and notes as well as sections marked as non-normative in this specification are non-normative. Everything else in this specification is normative.

The keywords MUST, MUST NOT, REQUIRED, SHOULD, SHOULD NOT, RECOMMENDED,MAY, and OPTIONAL in this specification are to be interpreted as described in [RFC2119].

There are two classes of products that can claim conformance to this specification: JSON-LD Implementations and JSON-LD Processors.

A conforming JSON-LD Implementation is a system capable of transforming JSON-LD documents according the algorithms defined in this specification.

A conforming JSON-LD Processor is a conforming JSON-LD Implementation that exposes the Application Programming Interface (API) defined in this specification. It MUST implement the json-ld-1.0 processing mode (for further details, see the[processingMode](#widl-JsonLdOptions-processingMode) option of JsonLdOptions).

The algorithms in this specification are generally written with more concern for clarity than efficiency. Thus, JSON-LD Implementations and Processors may implement the algorithms given in this specification in any way desired, so long as the end result is indistinguishable from the result that would be obtained by the specification's algorithms.

This specification does not define how JSON-LD Implementations or Processors handle non-conforming input documents. This implies that JSON-LD Implementations or Processors_MUST NOT_ attempt to correct malformed IRIs or language tags; however, they MAY issue validation warnings. IRIs are not modified other than converted between relative andabsolute IRIs.

Note

Implementers can partially check their level of conformance to this specification by successfully passing the test cases of the JSON-LD test suite [JSON-LD-TESTS]. Note, however, that passing all the tests in the test suite does not imply complete conformance to this specification. It only implies that the implementation conforms to aspects tested by the test suite.

4. General Terminology

This document uses the following terms as defined in JSON [RFC4627]. Refer to the JSON Grammar section in [RFC4627] for formal definitions.

JSON object

An object structure is represented as a pair of curly brackets surrounding zero or more key-value pairs. A key is a string. A single colon comes after each key, separating the key from the value. A single comma separates a value from a following key. In contrast to JSON, in JSON-LD the keys in an object must be unique.

array

An array structure is represented as square brackets surrounding zero or more values (or elements). Elements are separated by commas. In JSON, an array is an ordered sequence of zero or more values. While JSON-LD uses the same array representation as JSON, the collection is unordered by default. While order is preserved in regular JSON arrays, it is not in regular JSON-LD arrays unless specific markup is provided (see ).

string

A string is a sequence of zero or more Unicode characters, wrapped in double quotes, using backslash escapes (if necessary). A character is represented as a single character string.

number

A number is similar to that used in most programming languages, except that the octal and hexadecimal formats are not used and that leading zeros are not allowed.

true and false

Values that are used to express one of two possible boolean states.

null

The null value. A key-value pair in the@context where the value, or the @id of the value, is null explicitly decouples a term's association with an IRI. A key-value pair in the body of a JSON-LD document whose value is null has the same meaning as if the key-value pair was not defined. If @value, @list, or@set is set to null in expanded form, then the entire JSON object is ignored.

Furthermore, the following terminology is used throughout this document:

keyword

A JSON key that is specific to JSON-LD, specified in the JSON-LD Syntax specification [JSON-LD] in the section titledSyntax Tokens and Keywords.

context

A a set of rules for interpreting a JSON-LD document as specified inThe Context of the [JSON-LD] specification.

JSON-LD document

A JSON-LD document is a serialization of a collection ofJSON-LD graphs and comprises exactly onedefault graph and zero or more named graphs.

named graph

A named graph is a pair consisting of an IRI or blank node (the graph name) and a JSON-LD graph.

default graph

The default graph is the only graph in a JSON-LD document which has no graph name.

JSON-LD graph

A labeled directed graph, i.e., a set of nodes connected by edges, as specified in the Data Model section of the JSON-LD syntax specification [JSON-LD].

edge

Every edge has a direction associated with it and is labeled with an IRI or a blank node identifier. Within the JSON-LD syntax these edge labels are called properties. Whenever possible, anedge should be labeled with an IRI.

node

Every node is an IRI, a blank node, a JSON-LD value, or a list.

IRI

An IRI (Internationalized Resource Identifier) is a string that conforms to the syntax defined in [RFC3987].

absolute IRI

An absolute IRI is defined in [RFC3987] containing a scheme along with a path and optional query and fragment segments.

relative IRI

A relative IRI is an IRI that is relative some other absolute IRI; in the case of JSON-LD this is the base location of the document.

blank node

A node in a JSON-LD graph that does not contain a de-referenceable identifier because it is either ephemeral in nature or does not contain information that needs to be linked to from outside of the JSON-LD graph.

blank node identifier

A blank node identifier is a string that can be used as an identifier for ablank node within the scope of a JSON-LD document. Blank node identifiers begin with _:.

JSON-LD value

A JSON-LD value is a string, a number,true or false, a typed value, or alanguage-tagged string.

typed value

A typed value consists of a value, which is a string, and a type, which is an IRI.

language-tagged string

A language-tagged string consists of a string and a non-empty language tag as defined by [BCP47]. The language tag must be well-formed according tosection 2.2.9 of [BCP47], and is normalized to lowercase.

list

A list is an ordered sequence of IRIs,blank nodes, andJSON-LD values.

5. Algorithm Terms

active graph

The name of the currently active graph that the processor should use when processing.

active subject

The currently active subject that the processor should use when processing.

active property

The currently active property or keyword that the processor should use when processing.

active context

A context that is used to resolve terms while the processing algorithm is running.

local context

A context that is specified within a JSON object, specified via the @context keyword.

JSON-LD input

The JSON-LD data structure that is provided as input to the algorithm.

term

A term is a short word defined in a context that may be expanded to an IRI

compact IRI

A compact IRI is has the form of prefix:suffix and is used as a way of expressing an IRI without needing to define separate term definitions for each IRI contained within a common vocabulary identified by prefix.

node object

A node object represents zero or more properties of anode in the JSON-LD graph serialized by the JSON-LD document. A JSON object is a node object if it exists outside of the JSON-LD context and:

value object

A value object is a JSON object that has an @value member.

list object

A list object is a JSON object that has an @list member.

set object

A set object is a JSON object that has an @set member.

scalar

A scalar is either a JSON string, number, true, or false.

RDF subject

A subject as specified by [RDF11-CONCEPTS].

RDF predicate

A predicate as specified by [RDF11-CONCEPTS].

RDF object

An object as specified by [RDF11-CONCEPTS].

RDF triple

A triple as specified by [RDF11-CONCEPTS].

RDF dataset

A dataset as specified by [RDF11-CONCEPTS] representing a collection ofRDF graphs.

6. Context Processing Algorithms

6.1 Context Processing Algorithm

When processing a JSON-LD data structure, each processing rule is applied using information provided by the active context. This section describes how to produce an active context.

The active context contains the activeterm definitions which specify how properties and values have to be interpreted as well as the current base IRI, the vocabulary mapping and the default language. Eachterm definition consists of an IRI mapping, a boolean flag reverse property, an optional type mapping or language mapping, and an optional container mapping. A term definition can not only be used to map a term to an IRI, but also to map a term to a keyword, in which case it is referred to as a keyword alias.

When processing, the active context is initialized without any term definitions,vocabulary mapping, or default language. If a local context is encountered during processing, a newactive context is created by cloning the existingactive context. Then the information from thelocal context is merged into the new active context. Given that local contexts may contain references to remote contexts, this includes their retrieval.

General Solution

This section is non-normative.

First we prepare a new active context result by cloning the current active context. Then we normalize the form the passedlocal context to an array.Local contexts may be in the form of aJSON object, a string, or an array containing a combination of the two. Finally we process each context contained in the local context array as follows.

If context is a string, it represents a reference to a remote context. We dereference the remote context and replace context with the value of the @context key of the top-level object in the retrieved JSON-LD document. If there's no such key, an invalid remote context has been detected. Otherwise, we process context by recursively using this algorithm ensuring that there is no cyclical reference.

If context is a JSON object, we first update thebase IRI, the vocabulary mapping, and thedefault language by processing three specific keywords:@base, @vocab, and @language. These are handled before any other keys in the local context because they affect how the other keys are processed.

Then, for every other key in local context, we update the term definition in result. Sinceterm definitions in a local context may themselves contain terms orcompact IRIs, we may need to recurse. When doing so, we must ensure that there is no cyclical dependency, which is an error. After we have processed anyterm definition dependencies, we update the current term definition, which may be a keyword alias.

Finally, we return result as the new active context.

Algorithm

This algorithm specifies how a new active context is updated with a local context. The algorithm takes three input variables: an active context, a local context, and an array remote contexts which is used to detect cyclical context inclusions. If remote contexts is not passed, it is initialized to an emptyarray.

  1. Initialize result to the result of cloningactive context.
  2. If local context is not an array, set it to an array containing onlylocal context.
  3. For each item context in local context:
    1. If context is null, set result to a newly-initialized active context and continue with the next context.
    2. If context is a string,
      1. Set context to the result of resolving value against the base IRI which is established as specified insection 5.1 Establishing a Base URI of [RFC3986]. Only the basic algorithm insection 5.2 of [RFC3986] is used; neitherSyntax-Based Normalization norScheme-Based Normalization are performed. Characters additionally allowed in IRI references are treated in the same way that unreserved characters are treated in URI references, persection 6.5 of [RFC3987].
      2. If context is in the remote contexts array, a[recursive context inclusion](#idl-def-JsonLdErrorCode.recursive-context-inclusion) error has been detected and processing is aborted; otherwise, add context to remote contexts.
      3. Initialize context no base to the result of cloning theactive context.
      4. Remove the base IRI of context no base.
      5. Dereference context. If the dereferenced document has no top-level JSON object with an @context member, an[invalid remote context](#idl-def-JsonLdErrorCode.invalid-remote-context) has been detected and processing is aborted; otherwise, set context to the value of that member.
      6. Set context to the result of recursively calling this algorithm, passing context no base for active context,context for local context, and remote contexts.
      7. If context has no base IRI but result does, set the base IRI of context to the one of_result_.
      8. Overwrite result with context and continue with the next context.
    3. If context is not a JSON object, an[invalid local context](#idl-def-JsonLdErrorCode.invalid-local-context) error has been detected and processing is aborted.
    4. If context has an @base key:
      This feature is at risk as the fact that a document may have multiple base IRIs is potentially confusing for developers. It is also being discussed whether relative IRIs are allowed as values of @base or whether the empty string should be used to explicitly specify that there isn't a base IRI, which could be used to ensure that relative IRIs remain relative when expanding.
      1. Initialize value to the value associated with the@base key.
      2. If value is null, remove thebase IRI of result.
      3. Otherwise, if value is an absolute IRI, the base IRI of result is set to value. If it is not an absolute IRI, an[invalid base IRI](#idl-def-JsonLdErrorCode.invalid-base-IRI) error has been detected and processing is aborted.
    5. If context has an @vocab key:
      1. Initialize value to the value associated with the@vocab key.
      2. If value is null, remove any vocabulary mapping from result.
      3. Otherwise, if value is an absolute IRI, the vocabulary mapping of result is set to value. If it is not an absolute IRI, an[invalid vocab mapping](#idl-def-JsonLdErrorCode.invalid-vocab-mapping) error has been detected and processing is aborted.
    6. If context has an @language key:
      1. Initialize value to the value associated with the@language key.
      2. If value is null, remove any default language from result.
      3. Otherwise, if value is string, thedefault language of result is set to lowercased value. If it is not a string, an[invalid default language](#idl-def-JsonLdErrorCode.invalid-default-language) error has been detected and processing is aborted.
    7. Create a JSON object defined to use to keep track of whether or not a term has already been defined or currently being defined during recursion.
    8. For each key_-value pair in context where_key is not @base, @vocab, or@language, invoke theCreate Term Definition algorithm, passing result for active context,context for local context, key, and defined.
  4. Return result.

6.2 Create Term Definition

This algorithm is called from theContext Processing algorithm to create a term definition in the active context for a term being processed in a local context.

General Solution

This section is non-normative.

Term definitions are created by parsing the information in the given local context for the given term. If the given term is acompact IRI, it may omit an IRI mapping by depending on its prefix having its ownterm definition. If the prefix is a key in the local context, then its term definition must first be created, through recursion, before continuing. Because aterm definition can depend on otherterm definitions, a mechanism must be used to detect cyclical dependencies. The solution employed here uses a map, defined, that keeps track of whether or not aterm has been defined or is currently in the process of being defined. This map is checked before any recursion is attempted.

After all dependencies for a term have been defined, the rest of the information in the local context for the giventerm is taken into account, creating the appropriateIRI mapping, container mapping, andtype mapping or language mapping for theterm.

Algorithm

The algorithm has four required inputs which are: an active context, a local context, a term, and a map defined.

  1. If defined contains the key term and the associated value is true (indicating that theterm definition has already been created), return. Otherwise, if the value is false, a[cyclic IRI mapping](#idl-def-JsonLdErrorCode.cyclic-IRI-mapping) error has been detected and processing is aborted.
  2. Set the value associated with defined's term key tofalse. This indicates that the term definition is now being created but is not yet complete.
  3. Since keywords cannot be overridden,term must not be a keyword. Otherwise, a[keyword redefinition](#idl-def-JsonLdErrorCode.keyword-redefinition) error has been detected and processing is aborted.
  4. Remove any existing term definition for term inactive context.
  5. Initialize value to the value associated with the key_term_ in local context.
  6. If value is null or value is a JSON object containing the key-value pair@id-null, set theterm definition in active context tonull, set the value associated with defined's key term to true, and return.
  7. Otherwise, if value is a string:
    1. Expand value by setting it to the result of using the IRI Expansion algorithm, passing active context, value,true for vocab,true for document relative,local context, and defined.
    2. If value is @context, an[invalid keyword alias](#idl-def-JsonLdErrorCode.invalid-keyword-alias) error has been detected and processing is aborted.
    3. Set the IRI mapping for the term definition for term in active context to value, set the value associated with defined's key term totrue, and return.
  8. Otherwise, value must be a JSON object, if not, an[invalid term definition](#idl-def-JsonLdErrorCode.invalid-term-definition) error has been detected and processing is aborted.
  9. Create a new term definition, definition.
  10. If value contains the key @reverse:
  11. If value contains an @id, an@type, or an @language, member, an[invalid reverse property](#idl-def-JsonLdErrorCode.invalid-reverse-property) error has been detected and processing is aborted.
  12. If the value associated with the @reverse key is not a string, an[invalid IRI mapping](#idl-def-JsonLdErrorCode.invalid-IRI-mapping) error has been detected and processing is aborted.
  13. Otherwise, set the IRI mapping of definition to the result of using the IRI Expansion algorithm, passing active context, the value associated with the @reverse key for value, true for vocab, true for document relative,local context, and defined. If the result is not an absolute IRI, i.e., it contains no colon (:), an[invalid IRI mapping](#idl-def-JsonLdErrorCode.invalid-IRI-mapping) error has been detected and processing is aborted.
  14. Set the type mapping of definition to@id.
  15. If value contains an @container member, set the container mapping of definition to @index if that is the value of the@container member; otherwise an[invalid reverse property](#idl-def-JsonLdErrorCode.invalid-reverse-property) error has been detected (reverse properties only support index-containers) and processing is aborted.
  16. Set the reverse property flag of definition to true.
  17. Set the term definition of term inactive context to definition and the value associated with defined's key term totrue and return.
  18. Set the reverse property flag of definition to false.
  19. If value contains the key @id:
  20. If the value associated with the @id key is not a string, an[invalid IRI mapping](#idl-def-JsonLdErrorCode.invalid-IRI-mapping) error has been detected and processing is aborted.
  21. Otherwise, set the IRI mapping of definition to the result of using the IRI Expansion algorithm, passingactive context, the value associated with the @id key for_value_, true for vocab,true for document relative,local context, and defined.
  22. Otherwise if the term contains a colon (:):
  23. If term is a compact IRI with aprefix that is a key in local context a dependency has been found. Use this algorithm recursively passingactive context, local context, theprefix as term, and defined.
  24. If term's prefix has aterm definition in active context, set the IRI mapping of definition to the result of concatenating the value associated with the prefix'sIRI mapping and the term's suffix.
  25. Otherwise, term is an absolute IRI. Set theIRI mapping of definition to term.
  26. Otherwise, if active context has avocabulary mapping, the IRI mapping of definition is set to the result of concatenating the value associated with the vocabulary mapping and term. If it does not have a vocabulary mapping, an[invalid IRI mapping](#idl-def-JsonLdErrorCode.invalid-IRI-mapping) error been detected and processing is aborted.
  27. If value contains the key @type:
  28. Initialize type to the value associated with the@type key, which must be a string. Otherwise, an[invalid type mapping](#idl-def-JsonLdErrorCode.invalid-type-mapping) error has been detected and processing is aborted.
  29. Set type to the result of using theIRI Expansion algorithm, passingactive context, type for value,true for vocab,true for document relative,local context, and defined. If the expanded type is neither @id, nor @vocab, nor an absolute IRI, an[invalid type mapping](#idl-def-JsonLdErrorCode.invalid-type-mapping) error has been detected and processing is aborted.
  30. Set the type mapping for definition to type.
  31. If value contains the key @container:
  32. Initialize container to the value associated with the@container key, which must be either@list, @set, @index, or @language. Otherwise, an[invalid container mapping](#idl-def-JsonLdErrorCode.invalid-container-mapping) error has been detected and processing is aborted.
  33. Set the container mapping of definition to_container_.
  34. If value contains the key @language and does not contain the key @type:
  35. Initialize language to the value associated with the@language key, which must be either null or a string. Otherwise, an[invalid language mapping](#idl-def-JsonLdErrorCode.invalid-language-mapping) error has been detected and processing is aborted.
  36. If language is a string set it to lowercased language. Set the language mapping of definition to language.
  37. Set the term definition of term inactive context to definition and set the value associated with defined's key term totrue.

6.3 IRI Expansion

In JSON-LD documents, some keys and values may representIRIs. This section defines an algorithm for transforming a string that represents an IRI into an absolute IRI or blank node identifier. It also covers transforming keyword aliases into keywords.

IRI expansion may occur during context processing or during any of the other JSON-LD algorithms. If IRI expansion occurs during context processing, then the local context and its related defined map from the Context Processing algorithm are passed to this algorithm. This allows for term definition dependencies to be processed via theCreate Term Definition algorithm.

General Solution

This section is non-normative.

In order to expand value to an absolute IRI, we must first determine if it is null, a term, akeyword alias, or some form of IRI. Based on what we find, we handle the specific kind of expansion; for example, we expand a keyword alias to a keyword and a term to an absolute IRI according to its IRI mapping in the active context. While inspecting value we may also find that we need to create term definition dependencies because we're running this algorithm during context processing. We can tell whether or not we're running during context processing by checking local context against null. We know we need to create a term definition in theactive context when value is a key in the local context and the defined map does not have a key for value with an associated value oftrue. The defined map is used duringContext Processing to keep track of which terms have already been defined or are in the process of being defined. We create aterm definition by using theCreate Term Definition algorithm.

Algorithm

The algorithm takes two required and four optional input variables. The required inputs are an active context and a value to be expanded. The optional inputs are two flags,document relative and vocab, that specifying whether value can be interpreted as a relative IRI against the document's base IRI or theactive context's vocabulary mapping, respectively, and a local context and a map defined to be used when this algorithm is used during Context Processing. If not passed, the two flags are set to false andlocal context and defined are initialized to null.

  1. If value is a keyword or null, return value as is.
  2. If local context is not null, it contains a key that equals value, and the value associated with the key that equals value in defined is not true, invoke the Create Term Definition algorithm, passing active context, local context,value as term, and defined. This will ensure that a term definition is created for value inactive context during Context Processing.
  3. If vocab is true and theactive context has a term definition for_value_, return the associated IRI mapping.
  4. If value contains a colon (:), it is either an absolute IRI or a compact IRI:
    1. Split value into a prefix and suffix at the first occurrence of a colon (:).
    2. If prefix is not underscore (_) and suffix does not begin with double-forward-slash (//), it may be a compact IRI:
      1. If local context is not null, it contains a key that equals prefix, and the value associated with the key that equals prefix in defined is not true, invoke theCreate Term Definition algorithm, passing active context,local context, prefix as term, and defined. This will ensure that aterm definition is created for prefix in active context duringContext Processing.
      2. If active context contains a term definition for prefix, return the result of concatenating the IRI mapping associated with prefix and_suffix_.
    3. Return value as it is already an absolute IRI.
  5. If vocab is true, andactive context has a vocabulary mapping, return the result of concatenating the vocabulary mapping with value.
  6. Otherwise, if document relative is true, set value to the result of resolving value against the base IRI. Only the basic algorithm insection 5.2 of [RFC3986] is used; neitherSyntax-Based Normalization norScheme-Based Normalization are performed. Characters additionally allowed in IRI references are treated in the same way that unreserved characters are treated in URI references, persection 6.5 of [RFC3987].
  7. If local context is not null and_value_ is not an absolute IRI, an[invalid IRI mapping](#idl-def-JsonLdErrorCode.invalid-IRI-mapping) error has been detected and processing is aborted.
  8. Otherwise, return value as is.

7. Expansion Algorithms

7.1 Expansion Algorithm

This algorithm expands a JSON-LD document, such that all context definitions are removed, all terms andcompact IRIs are expanded toabsolute IRIs,blank node identifiers, orkeywords and allJSON-LD values are expressed inarrays in expanded form.

General Solution

This section is non-normative.

Starting with its root element, we can process the JSON-LD document recursively, until we have a fullyexpanded result. Whenexpanding an element, we can treat each one differently according to its type, in order to break down the problem:

  1. If the element is null, there is nothing to expand.
  2. Otherwise, if element is a scalar, we expand it according to the Value Expansion algorithm.
  3. Otherwise, if the element is an array, then we expand each of its items recursively and return them in a newarray.
  4. Otherwise, element is a JSON object. We expand each of its keys, adding them to our result, and then we expand each value for each key recursively. Some of the keys will beterms orcompact IRIs and others will bekeywords or simply ignored because they do not have definitions in the context. AnyIRIs will be expanded using theIRI Expansion algorithm.

Finally, after ensuring result is in an array, we return result.

Algorithm

The algorithm takes three input variables: an active context, an active property, and an element to be expanded. To begin, the active context is set to the result of performing,Context Processing on the passed[expandContext](#widl-JsonLdOptions-expandContext), or empty if [expandContext](#widl-JsonLdOptions-expandContext) is null, active property is set to null, and element is set to the JSON-LD input.

  1. If element is null, return null.
  2. If element is a scalar,
    1. If active property is null or @graph, drop the free-floating scalar by returning null.
    2. Return the result of theValue Expansion algorithm, passing theactive context, active property, and_element_ as value.
  3. If element is an array,
    1. Initialize an empty array, result.
    2. For each item in element:
      1. Initialize expanded item to the result of using this algorithm recursively, passing active context,active property, and item as element.
      2. If the active property is @list or itscontainer mapping is set to @list, the_expanded item_ must not be an array or alist object, otherwise a[list of lists](#idl-def-JsonLdErrorCode.list-of-lists) error has been detected and processing is aborted.
      3. If expanded item is an array, append each of its items to result. Otherwise, if_expanded item_ is not null, append it to result.
    3. Return result.
  4. Otherwise element is a JSON object.
  5. If element contains the key @context, setactive context to the result of theContext Processing algorithm, passing active context and the value of the@context key as local context.
  6. Initialize an empty JSON object, result.
  7. For each key and value in element, ordered lexicographically by key:
    1. If key is @context, continue to the next key.
    2. Set expanded property to the result of using the IRI Expansion algorithm, passing active context, key for_value_, and true for vocab.
    3. If expanded property is null or it neither contains a colon (:) nor it is a keyword, drop key by continuing to the next key.
    4. If expanded property is a keyword:
      1. If active property equals @reverse, an[invalid reverse property map](#idl-def-JsonLdErrorCode.invalid-reverse-property-map) error has been detected and processing is aborted.
      2. If result has already an expanded property member, an[colliding keywords](#idl-def-JsonLdErrorCode.colliding-keywords) error has been detected and processing is aborted.
      3. If expanded property is @id and_value_ is not a string, an[invalid @id value](#idl-def-JsonLdErrorCode.invalid--id-value) error has been detected and processing is aborted. Otherwise, set expanded value to the result of using theIRI Expansion algorithm, passing active context, value, and true for document relative.
      4. If expanded property is @type and value is neither a string nor an array ofstrings, an[invalid type value](#idl-def-JsonLdErrorCode.invalid-type-value) error has been detected and processing is aborted. Otherwise, set expanded value to the result of using theIRI Expansion algorithm, passingactive context, true for vocab, and true for document relative to expand the value or each of its items.
      5. If expanded property is @graph, set_expanded value_ to the result of using this algorithm recursively passing active context, @graph for active property, and value for element.
      6. If expanded property is @value and_value_ is not a scalar or null, an[invalid value object value](#idl-def-JsonLdErrorCode.invalid-value-object-value) error has been detected and processing is aborted. Otherwise, set expanded value to value. If expanded value is null, set the @value member of result to null and continue with the next key from element. Null values need to be preserved in this case as the meaning of an @type member depends on the existence of an @value member.
      7. If expanded property is @language and_value_ is not a string, an[invalid language-tagged string](#idl-def-JsonLdErrorCode.invalid-language-tagged-string) error has been detected and processing is aborted. Otherwise, set expanded value to lowercased value.
      8. If expanded property is @index and_value_ is not a string, an[invalid @index value](#idl-def-JsonLdErrorCode.invalid--index-value) error has been detected and processing is aborted. Otherwise, set expanded value to value.
      9. If expanded property is @list:
        1. If active property is null or@graph, continue with the next key from element to remove the free-floating list..
        2. Otherwise, initialize expanded value to the result of using this algorithm recursively passing active context,active property, and value for element.
        3. If expanded value is a list object, a[list of lists](#idl-def-JsonLdErrorCode.list-of-lists) error has been detected and processing is aborted.
      10. If expanded property is @set, set_expanded value_ to the result of using this algorithm recursively, passing active context,active property, and value for_element_.
      11. If expanded property is @reverse and_value_ is not a JSON object, an[invalid @reverse value](#idl-def-JsonLdErrorCode.invalid--reverse-value) error has been detected and processing is aborted. Otherwise
        1. Initialize expanded value to the result of using this algorithm recursively, passing active context,@reverse as active property, and_value_ as element.
        2. If expanded value contains an @reverse member, i.e., properties that are reversed twice, execute for each of its_property_ and item the following steps:
        1. If result does not have a property member, create one and set its value to an empty array.
        2. Append item to the value of the property member of result.
        3. If expanded value contains members other than @reverse:
        1. If result does not have an @reverse member, create one and set its value to an empty JSON object.
        2. Reference the value of the @reverse member in result using the variable reverse map.
        3. For each property and items in expanded value other than @reverse:
        1. For each item in items:
        1. If item is a value object or list object, an[invalid reverse property value](#idl-def-JsonLdErrorCode.invalid--reverse-value) has been detected and processing is aborted.
        2. If reverse map has no property member, create one and initialize its value to an empty array.
        3. Append item to the value of the property member in reverse map.
        4. Continue with the next key from element.
      12. Unless expanded value is null, set the expanded property member of result to_expanded value_.
      13. Continue with the next key from element..
    5. Otherwise, if key's container mapping inactive context is @language and_value_ is a JSON object then value is expanded from a language map as follows:
      1. Initialize expanded value to an emptyarray.
      2. For each key-value pair language_-language value in value, ordered lexicographically by language:
        1. If language value is not an array set it to an array containing only_language value
        .
        2. For each item in language value:
        1. item must be a string, otherwise an[invalid language map value](#idl-def-JsonLdErrorCode.invalid-language-map-value) error has been detected and processing is aborted.
        2. Append a JSON object to_expanded value_ that consists of two key-value pairs: (@value-item) and (@language-lowercased_language_).
    6. Otherwise, if key's container mapping inactive context is @index and_value_ is a JSON object then value is expanded from an index map as follows:
      1. Initialize expanded value to an emptyarray.
      2. For each key-value pair index_-index value in value, ordered lexicographically by index:
        1. If index value is not an array set it to an array containing only_index value
        .
        2. Initialize index value to the result of using this algorithm recursively, passingactive context,key as active property, and index value as element.
        3. For each item in index value:
        1. If item does not have the key@index, add the key-value pair (@index-index) to_item_.
        2. Append item to expanded value.
    7. Otherwise, initialize expanded value to the result of using this algorithm recursively, passing active context,key for active property, and value for element.
    8. If expanded value is null, ignore key by continuing to the next key from element.
    9. If the container mapping associated to key inactive context is @list and_expanded value_ is not already a list object, convert expanded value to a list object by first setting it to an array containing only_expanded value_ if it is not already an array, and then by setting it to a JSON object containing the key-value pair @list-expanded value.
    10. Otherwise, if the term definition associated to_key_ indicates that it is a reverse property
      1. If result has no @reverse member, create one and initialize its value to an empty JSON object.
      2. Reference the value of the @reverse member in result using the variable reverse map.
      3. If expanded value is not an array, set it to an array containing expanded value.
      4. For each item in expanded value
        1. If item is a value object or list object, an[invalid reverse property value](#idl-def-JsonLdErrorCode.invalid--reverse-value) has been detected and processing is aborted.
        2. If reverse map has no expanded property member, create one and initialize its value to an empty array.
        3. Append item to the value of the expanded property member of reverse map.
    11. Otherwise, if key is not a reverse property:
      1. If result does not have an expanded property member, create one and initialize its value to an emptyarray.
      2. Append expanded value to value of the expanded property member of result.
  8. If result contains the key @value:
    1. The result must not contain any keys other than@value, @language, @type, and @index. It must not contain both the@language key and the @type key. Otherwise, an[invalid value object](#idl-def-JsonLdErrorCode.invalid-value-object) error has been detected and processing is aborted.
    2. If the value of result's @value key isnull, then set result to null.
    3. Otherwise, if the value of result's @value member is not a string and result contains the key@language, an[invalid language-tagged value](#idl-def-JsonLdErrorCode.invalid-language-tagged-value) error has been detected (only strings can be language-tagged) and processing is aborted.
    4. Otherwise, if the result has a @type member and its value is not a string, an[invalid typed value](#idl-def-JsonLdErrorCode.invalid-typed-value) error has been detected and processing is aborted.
  9. Otherwise, if result contains the key @type and its associated value is not an array, set it to an array containing only the associated value.
  10. Otherwise, if result contains the key @set or @list:
  11. The result must contain at most one other key and that key must be @index. Otherwise, an[invalid set or list object](#idl-def-JsonLdErrorCode.invalid-set-or-list-object) error has been detected and processing is aborted.
  12. If result contains the key @set, then set result to the key's associated value.
  13. If result contains only the key@language, set result to null.
  14. If active property is null or @graph, drop free-floating values as follows:
  15. If result is an empty JSON object or contains the keys @value or @list, set result tonull.
  16. Otherwise, if result is a JSON object whose only key is @id, set result to null.
  17. Return result.

If, after the above algorithm is run, the result is aJSON object that contains only an @graph key, set the result to the value of @graph's value. Otherwise, if the result is null, set it to an empty array. Finally, if the result is not an array, then set the result to anarray containing only the result.

7.2 Value Expansion

Some values in JSON-LD can be expressed in acompact form. These values are required to be expanded at times when processing JSON-LD documents. A value is said to be in expanded form after the application of this algorithm.

General Solution

This section is non-normative.

If active property has a type mapping in theactive context set to @id or @vocab, a JSON object with a single member @id whose values is the result of using theIRI Expansion algorithm on value is returned.

Otherwise, the result will be a JSON object containing an @value member whose value is the passed value. Additionally, an @type member will be included if there is atype mapping associated with the active property or an @language member if value is astring and there is language mapping associated with the active property.

Algorithm

The algorithm takes three required inputs: an active context, an active property, and a value to expand.

  1. If the active property has a type mapping in active context that is @id, return a newJSON object containing a single key-value pair where the key is @id and the value is the result of using theIRI Expansion algorithm, passingactive context, value, and true for_document relative_.
  2. If active property has a type mapping inactive context that is @vocab, return a new JSON object containing a single key-value pair where the key is @id and the value is the result of using the IRI Expansion algorithm, passingactive context, value, true for_vocab_, and true for_document relative_.
  3. Otherwise, initialize result to a JSON object with an @value member whose value is set to_value_.
  4. If active property has a type mapping inactive context, add an @type member to_result_ and set its value to the value associated with thetype mapping.
  5. Otherwise, if value is a string:
    1. If a language mapping is associated withactive property in active context, add an @language to result and set its value to the language code associated with thelanguage mapping; unless thelanguage mapping is set to null in which case no member is added.
    2. Otherwise, if the active context has adefault language, add an @language to result and set its value to thedefault language.
  6. Return result.

8. Compaction Algorithms

8.1 Compaction Algorithm

This algorithm compacts a JSON-LD document, such that the givencontext is applied. This must result in shortening any applicable IRIs toterms orcompact IRIs, any applicablekeywords tokeyword aliases, and any applicable JSON-LD values expressed in expanded form to simple values such asstrings ornumbers.

General Solution

This section is non-normative.

Starting with its root element, we can process the JSON-LD document recursively, until we have a fullycompacted result. Whencompacting an element, we can treat each one differently according to its type, in order to break down the problem:

  1. If the element is a scalar, it is already in compacted form, so we simply return it.
  2. If the element is an array, we compact each of its items recursively and return them in a newarray.
  3. Otherwise element is a JSON object. The value of each key in element is compacted recursively. Some of the keys will be compacted, using the IRI Compaction algorithm, to terms or compact IRIs and others will be compacted from keywords tokeyword aliases or simply left unchanged because they do not have definitions in the context. Values will be converted to compacted form via theValue Compaction algorithm. Some data will be reshaped based on container mappings specified in the context such as @index or @language maps.

The final output is a JSON object with a @context key, if a context was given, where the JSON object is either result or a wrapper for it where result appears as the value of an (aliased) @graph key because result contained two or more items in an array.

Algorithm

The algorithm takes five required input variables: an active context, an inverse context, an active property, an_element_ to be compacted, and a flag[compactArrays](#widl-JsonLdOptions-compactArrays). To begin, the active context is set to the result of performing Context Processing on the passed context, the inverse context is set to the result of performing theInverse Context Creation algorithm on active context, the active property is set to null, element is set to the result of performing the Expansion algorithm on the JSON-LD input, and, if not passed,[compactArrays](#widl-JsonLdOptions-compactArrays) is set to true.

  1. If element is a scalar, it is already in its most compact form, so simply return element.
  2. If element is an array:
    1. Initialize result to an empty array.
    2. For each item in element:
      1. Initialize compacted item to the result of using this algorithm recursively, passing active context,inverse context, active property, and em>item for element.
      2. If compacted item is not null, then append it to result.
    3. If result contains only one item (it has a length of1), active property has nocontainer mapping in active context, and[compactArrays](#widl-JsonLdOptions-compactArrays) is true, set result to its only item.
    4. Return result.
  3. Otherwise element is a JSON object.
  4. If element has an @value or @id member and the result of using theValue Compaction algorithm, passing active context, inverse context,active property,and element as value is a scalar, return that result.
  5. Initialize inside reverse to true ifactive property equals @reverse, otherwise to false.
  6. Initialize result to an empty JSON object.
  7. For each key expanded property and value expanded value in element, ordered lexicographically by expanded property:
    1. If expanded property is @id or@type:
      1. If expanded value is a string, then initialize compacted value to the result of using the IRI Compaction algorithm, passing active context, inverse context,expanded value for iri, and true for vocab if_expanded property_ is @type,false otherwise.
      2. Otherwise, expanded value must be a@type array:
        1. Initialize compacted value to an emptyarray.
        2. For each item expanded type in_expanded value_, append the result of of using the IRI Compaction algorithm, passing active context, inverse context,expanded type for iri, andtrue for vocab, to compacted value.
        3. If compacted value contains only one item (it has a length of 1), then set compacted value to its only item.
      3. Initialize alias to the result of using theIRI Compaction algorithm, passing active context, inverse context, and_expanded property_ for iri.
      4. Add a member alias to result whose value is set to compacted value and continue to the next_expanded property_.
    2. If expanded property is @reverse:
      1. Initialize compacted value to the result of using this algorithm recursively, passing active context,inverse context, @reverse foractive property, and expanded value for element.
      2. For each property and value in compacted value:
        1. If the term definition for property in theactive context indicates that property is a reverse property
        1. If[compactArrays](#widl-JsonLdOptions-compactArrays) is false and value is not anarray, set value to a newarray containing only value.
        2. If property is not a member of_result_, add one and set its value to value.
        3. Otherwise, if the value of the property member of_result_ is not an array, set it to a newarray containing only the value. Then append value to its value if value is not an array, otherwise append each of its items.
        4. Remove the property member from_compacted value_.
      3. If compacted value has some remaining members, i.e., it is not an empty JSON object:
        1. Initialize alias to the result of using theIRI Compaction algorithm, passing active context, inverse context, and@reverse for iri.
        2. Set the value of the alias member of result to_compacted value_ and continue with the next_expanded property_ from element.
    3. If expanded property is @index andactive property has a container mapping in active context that is @index, then the compacted result will be inside of an @index container, drop the @index property by continuing to the next expanded property.
    4. Otherwise, if expanded property is @index,@value, or @language:
      1. Initialize alias to the result of using the IRI Compaction algorithm, passing active context, inverse context, and_expanded property_ for iri.
      2. Add a member alias to result whose value is set to expanded value and continue with the next_expanded property_.
    5. If expanded value is an empty array:
      1. Initialize item active property to the result of using the IRI Compaction algorithm, passing active context, inverse context,expanded property for iri,expanded value for value,true for vocab, and_inside reverse_.
      2. If result does not have the key that equals_item active property_, set this key's value in_result_ to an empty array. Otherwise, if the key's value is not an array, then set it to one containing only the value.
    6. At this point, expanded value must be anarray due to theExpansion algorithm. For each item expanded item in expanded value:
      1. Initialize item active property to the result of using the IRI Compaction algorithm, passing active context, inverse context,expanded property for iri,expanded item for value,true for vocab, and_inside reverse_.
      2. Initialize container to null. If there is a container mapping for_item active property_ in active context, set container to its value.
      3. Initialize compacted item to the result of using this algorithm recursively, passingactive context, inverse context,item active property for active property,expanded item for element if it does not contain the key @list, otherwise pass the key's associated value for element.
      4. If expanded item is a list object:
        1. If compacted item is not an array, then set it to an array containing only_compacted item_.
        2. If container is not @list:
        1. Convert compacted item to alist object by setting it to aJSON object containing key-value pair where the key is the result of theIRI Compaction algorithm, passing active context, inverse context,@list for iri, and compacted item for value.
        2. If expanded item contains the key@index, then add a key-value pair to compacted item where the key is the result of the IRI Compaction algorithm, passing active context, inverse context,@index as iri, and the associated with the@index key in expanded item as value.
        3. Otherwise, item active property must not be a key in result because there cannot be twolist objects associated with an active property that has acontainer mapping; a[compaction to list of lists](#idl-def-JsonLdErrorCode.compaction-to-list-of-lists) error has been detected and processing is aborted.
      5. If container is @language or@index:
        1. If item active property is a key in_result_, then initialize map object to its associated value, otherwise initialize it to an emptyJSON object.
        2. If container is @language and_compacted item_ contains the key@value, then set compacted item to the value associated with its @value key.
        3. Initialize map key to the value associated with with the key that equals container in_expanded item_.
        4. If map key is not a key in map object, then set this key's value in map object to compacted item. Otherwise, if the value is not an array, then set it to one containing only the value and then append_compacted item_ to it.
      6. Otherwise,
        1. If[compactArrays](#widl-JsonLdOptions-compactArrays) is false, container is @set or@list, or expanded property is@list or @graph and_compacted item_ is not an array, set it to a new array containing only compacted item.
        2. If item active property is not a key in_result_ then add the key-value pair, (item active property_-compacted item), to result.
        3. Otherwise, if the value associated with the key that equals item active property in result is not an array, set it to a newarray containing only the value. Then append compacted item to the value if_compacted item
        is not an array, otherwise, concatenate it.
  8. Return result.

If, after the algorithm outlined above is run, the result result is an array, replace it with a newJSON object with a single member whose key is the result of using the IRI Compaction algorithm, passing active context, inverse context, and@graph as iri and whose value is the array result. Finally, if a context has been passed, add an@context member to result and set its value to the passed context.

8.2 Inverse Context Creation

When there is more than one term that could be chosen to compact an IRI, it has to be ensured that the term selection is both deterministic and represents the most context-appropriate choice whilst taking into consideration algorithmic complexity.

In order to make term selections, the concept of aninverse context is introduced. An inverse context is essentially a reverse lookup table that mapscontainer mappings,type mappings, andlanguage mappings to a simpleterm for a given active context. Ainverse context only needs to be generated for anactive context if it is being used for compaction.

To make use of an inverse context, a list of preferredcontainer mappings and thetype mapping or language mapping are gathered for a particular value associated with an IRI. These parameters are then fed to the Term Selection algorithm, which will find the term that most appropriately matches the value's mappings.

General Solution

This section is non-normative.

To create an inverse context for a givenactive context, each term in theactive context is visited, ordered by length, shortest first (ties are broken by choosing the lexicographically leastterm). For each term, an entry is added to the inverse context for each possible combination ofcontainer mapping and type mapping or language mapping that would legally match theterm. Illegal matches include differences between a value's type mapping or language mapping and that of the term. If a term has nocontainer mapping, type mapping, orlanguage mapping (or some combination of these), then it will have an entry in the inverse context using the special key @none. This allows theTerm Selection algorithm to fall back to choosing more generic terms when a more specifically-matching term is not available for a particularIRI and value combination.

Algorithm

The algorithm takes one required input: the active context that the inverse context is being created for.

  1. Initialize result to an empty JSON object.
  2. Initialize default language to @none. If theactive context has a default language, set default language to it.
  3. For each key term and value term definition in the active context, ordered by shortest term first (breaking ties by choosing the lexicographically leastterm):
    1. If the term definition is null,term cannot be selected during compaction, so continue to the next term.
    2. Initialize container to @none. If there is a container mapping interm definition, set container to its associated value.
    3. Initialize iri to the value of the IRI mapping for the term definition.
    4. If iri is not a key in result, add a key-value pair where the key is iri and the value is an empty JSON object to result.
    5. Reference the value associated with the iri member in_result_ using the variable container map.
    6. If container has no container map member, create one and set its value to a newJSON object with two members. The first member is@language and its value is a new emptyJSON object, the second member is @type and its value is a new empty JSON object.
    7. Reference the value associated with the container member in container map using the variable type/language map.
    8. If the term definition indicates that the term represents a reverse property:
      1. Reference the value associated with the @type member in type/language map using the variable_type map_.
      2. If type map does not have a @reverse member, create one and set its value to the term being processed.
    9. Otherwise, if term definition has atype mapping:
      1. Reference the value associated with the @type member in type/language map using the variable_type map_.
      2. If type map does not have a member corresponding to the type mapping in term definition, create one and set its value to the term being processed.
    10. Otherwise, if term definition has alanguage mapping (might be null):
      1. Reference the value associated with the @language member in type/language map using the variable_language map_.
      2. If the language mapping equals null, set language to @null; otherwise set it to the language code in language mapping.
      3. If language map does not have a language member, create one and set its value to the term being processed.
    11. Otherwise:
      1. Reference the value associated with the @language member in type/language map using the variable_language map_.
      2. If language map does not have a default language member, create one and set its value to the term being processed.
      3. If language map does not have a @none member, create one and set its value to the term being processed.
      4. Reference the value associated with the @type member in type/language map using the variable_type map_.
      5. If type map does not have a @none member, create one and set its value to the term being processed.
  4. Return result.

8.3 IRI Compaction

This algorithm compacts an IRI to a term orcompact IRI, or a keyword to akeyword alias. A value that is associated with theIRI may be passed in order to assist in selecting the most context-appropriate term.

General Solution

This section is non-normative.

If the passed IRI is null, we simply return null. Otherwise, we first try to find a term that the IRI or keyword can be compacted to if it is relative to active context's vocabulary mapping. In order to select the most appropriateterm, we may have to collect information about the passed_value_. This information includes whiccontainer mappings would be preferred for expressing the value, and what itstype mapping or language mapping is. ForJSON-LD lists, the type mapping or language mapping will be chosen based on the most specific values that work for all items in the list. Once this information is gathered, it is passed to theTerm Selection algorithm, which will return the most appropriate term to use.

If no term was found that could be used to compact theIRI, then an attempt is made to find a compact IRI to use. If there is no appropriate compact IRI, then, if the IRI is relative toactive context's vocabulary mapping, then it is used. Otherwise, it is transformed to a relative IRI using the document'sbase IRI. Finally, if the IRI orkeyword still could not be compacted, it is returned as is.

Algorithm

This algorithm takes three required inputs and three optional inputs. The required inputs an active context, an inverse context, and the iri to be compacted. The optional inputs are a value associated with the iri, a vocab flag which specifies whether the passed iri should be compacted using theactive context's vocabulary mapping, and a reverse flag which specifies whether a reverse property is being compacted. If not passed, value is set tonull and vocab and reverse are both set tofalse.

  1. If iri is null, return null.
  2. If vocab is true and iri is a key in inverse context:
    1. Initialize default language toactive context's default language, if it has one, otherwise to@none.
    2. Initialize containers to an empty array. Thisarray will be used to keep track of an ordered list of preferred container mappings for a term, based on what is compatible with_value_.
    3. Initialize type/language to @language, and type/language value to @null. These two variables will keep track of the preferredtype mapping or language mapping for a term, based on what is compatible with value.
    4. If value is a JSON object that contains the key @index, then append the value @index to containers.
    5. If reverse is true, set type/language to @type, type/language value to@reverse, and append @set to containers.
    6. Otherwise, if value is a list object, then set_type/language_ and type/language value to the most specific values that work for all items in the list as follows:
      1. If @index is a not key in value, then append @list to containers.
      2. Initialize list to the array associated with the key @list in value.
      3. Initialize common language to null. If_list_ is empty, set common language to_default language_.
      4. For each item in list:
        1. Initialize item language to @none and_item type_ to @none.
        2. If item contains the key @value:
        1. If item contains the key @language, then set item language to its associated value.
        2. Otherwise, if item contains the key@type, set item type to its associated value.
        3. Otherwise, set item language to@null.
        3. Otherwise, set item type to @id.
        4. If common language is null, set it to item language.
        5. Otherwise, if item language does not equal_common language_ and item contains the key @value, then set common language to @none because list items have conflicting languages.
        6. If common type is null, set it to item type.
        7. Otherwise, if item type does not equal_common type_, then set common type to @none because list items have conflicting types.
        8. If common language is @none and_common type_ is @none, then stop processing items in the list because it has been detected that there is no common language or type amongst the items.
      5. If common language is null, set it to@none.
      6. If common type is null, set it to@none.
      7. If common type is not @none then set_type/language_ to @type and_type/language value_ to common type.
      8. Otherwise, set type/language value to_common language_.
    7. Otherwise:
      1. If value is a value object:
        1. If value contains the key @language and does not contain the key @index, then set type/language value to its associated value and append @language to_containers_.
        2. Otherwise, if value contains the key@type, then set type/language value to its associated value and set type/language to@type.
      2. Otherwise, set type/language to @type and set type/language value to @id.
      3. Append @set to containers.
    8. Append @none to containers. This represents the non-existence of a container mapping, and it will be the last container mapping value to be checked as it is the most generic.
    9. If type/language value is null, set it to@null. This is the key under which null values are stored in the inverse context entry.
    10. Initialize preferred values to an empty array. This array will indicate, in order, the preferred values for a term's type mapping orlanguage mapping.
    11. If type/language value is @reverse, append@reverse to preferred values.
    12. If type/language value is @id or @reverse and value has an @id member:
      1. If the result of using theIRI compaction algorithm, passing active context, inverse context, the value associated with the @id key in value for_iri_, true for vocab, andtrue for document relative has aterm definition in the active context with an IRI mapping that equals the value associated with the @id key in value, then append @vocab, @id, and@none, in that order, to preferred values.
      2. Otherwise, append @id, @vocab, and@none, in that order, to preferred values.
    13. Otherwise, append type/language value and @none, in that order, to preferred values.
    14. Initialize term to the result of theTerm Selection algorithm, passinginverse context, iri, containers,type/language, and preferred values.
    15. If term is not null, return term.
  3. At this point, there is no simple term that iri can be compacted to. Instead, try to create a compact IRI, starting by initializing compact IRI to null. This variable will be used to store the created compact IRI, if any.
  4. For each key term and value term definition in the active context:
    1. If the term contains a colon (:), then continue to the next term becauseterms with colons can't be used as prefixes.
    2. If the term definition is null, its IRI mapping equals iri, or itsIRI mapping is not a substring at the beginning of_iri_, the term cannot be used as a prefix because it is not a partial match with iri. Continue with the next term.
    3. Initialize candidate by concatenating term, a colon (:), and the substring of iri that follows after the value of theterm definition's IRI mapping.
    4. If either compact IRI is null or candidate is shorter or the same length but lexicographically less than_compact IRI_ and candidate does not have aterm definition in active context or if theterm definition has an IRI mapping that equals iri and value is null, set compact IRI to candidate.
  5. If compact IRI is not null, return compact IRI.
  6. At this point, there is no compact IRI that iri can be compacted to, so if vocab istrue and active context has avocabulary mapping:
    1. If iri begins with thevocabulary mapping's value but is longer, then initialize suffix to the substring of iri that does not match. If suffix does not have a term definition in active context, then return suffix.
  7. If vocab is false then transform iri to a relative IRI using the document's base IRI.
  8. Finally, return iri as is.

8.4 Term Selection

This algorithm, invoked via the IRI Compaction algorithm, makes use of an active context's inverse context to find the term that is best used to compact an IRI. Other information about a value associated with the IRI is given, including which container mappings and which type mapping or language mapping would be best used to express the value.

General Solution

This section is non-normative.

The inverse context's entry for the IRI will be first searched according to the preferredcontainer mappings, in the order that they are given. Amongst terms with a matchingcontainer mapping, preference will be given to those with a matching type mapping or language mapping, over those without a type mapping orlanguage mapping. If there is no term with a matching container mapping then the term without a container mapping that matches the giventype mapping or language mapping is selected. If there is still no selected term, then a term with no type mapping or language mapping will be selected if available. No term will be selected that has a conflicting type mapping or language mapping. Ties between terms that have the same mappings are resolved by first choosing the shortest terms, and then by choosing the lexicographically least term. Note that these ties are resolved automatically because they were previously resolved when theInverse Context Creation algorithm was used to create the inverse context.

Algorithm

This algorithm has five required inputs. They are: an inverse context, a keyword or IRI iri, an array containers that represents an ordered list of preferred container mappings, a string type/language that indicates whether to look for a term with a matching type mapping or language mapping, and an array representing an ordered list of preferred values for the type mapping or language mapping to look for.

  1. Initialize container map to the value associated with_iri_ in the inverse context.
  2. For each item container in containers:
    1. If container is not a key in container map, then there is no term with a matchingcontainer mapping for it, so continue to the next_container_.
    2. Initialize type/language map to the value associated with the container member in container map.
    3. Initialize value map to the value associated with type/language member in type/language map.
    4. For each item in preferred values:
      1. If item is not a key in value map, then there is no term with a matchingtype mapping or language mapping, so continue to the next item.
      2. Otherwise, a matching term has been found, return the value associated with the item member in_value map_.
  3. No matching term has been found. Return null.

8.5 Value Compaction

Expansion transforms all values into expanded form in JSON-LD. This algorithm performs the opposite operation, transforming a value into compacted form. This algorithm compacts a value according to the term definition in the givenactive context that is associated with the value's associatedactive property.

General Solution

This section is non-normative.

The value to compact has either an @id or an@value member.

For the former case, if the type mapping ofactive property is set to @id or @vocab and value consists of only of an @id member and, if if the container mapping of active property is set to @index, an @index member, value can be compacted to a string by returning the result of using the IRI Compaction algorithm to compact the value associated with the @id member. Otherwise, value cannot be compacted and is returned as is.

For the latter case, it might be possible to compact value just into the value associated with the @value member. This can be done if the active property has a matchingtype mapping or language mapping and there is either no @index member or the container mapping of active property is set to @index. It can also be done if @value is the only member in value (apart an @index member in case the container mapping of active property is set to @index) and either its associated value is not a string, there is no default language, or there is an explicitnull language mapping for theactive property.

Algorithm

This algorithm has four required inputs: an active context, aninverse context, an active property, and a value to be compacted.

  1. Initialize number members to the number of members_value_ contains.
  2. If value has an @index member and thecontainer mapping associated to active property is set to @index, decrease number members by1.
  3. If number members is greater than 2, return_value_ as it cannot be compacted.
  4. If value has an @id member:
    1. If number members is 1 and the type mapping of active property is set to @id, return the result of using theIRI compaction algorithm, passing active context, inverse context, and the value of the @id member for iri.
    2. Otherwise, if number members is 1 and the type mapping of active property is set to @vocab, return the result of using theIRI compaction algorithm, passing active context, inverse context, the value of the @id member for iri, andtrue for vocab.
    3. Otherwise, return value as is.
  5. Otherwise, if value has an @type member whose value matches the type mapping of active property, return the value associated with the @value member of value.
  6. Otherwise, if value has an @language member whose value matches the language mapping ofactive property, return the value associated with the@value member of value.
  7. Otherwise, if number members equals 1 and either the value of the @value member is not a string, or the active context has no default language, or the language mapping of active property is set to null,, return the value associated with the@value member.
  8. Otherwise, return value as is.

9. Flattening Algorithms

9.1 Flattening Algorithm

This algorithm flattens an expanded JSON-LD document by collecting all properties of a node in a single JSON object and labeling all blank nodes withblank node identifiers. This resulting uniform shape of the document, may drastically simplify the code required to process JSON-LD data in certain applications.

General Solution

This section is non-normative.

First, a node map is generated using theNode Map Generation algorithm which collects all properties of a node in a singleJSON object. In the next step, the node map is converted to a JSON-LD document inflattened document form. Finally, if a context has been passed, the flattened document is compacted using the Compaction algorithm before being returned.

Algorithm

The algorithm takes two input variables, an element to flatten and an optional context used to compact the flattened document. If not passed, context is set to null.

  1. Initialize node map to a JSON object consisting of a single member whose key is @default and whose value is an empty JSON object.
  2. Perform the Node Map Generation algorithm, passing_element_ and node map.
  3. Initialize default graph to the value of the @default member of node map, which is a JSON object representing the default graph.
  4. For each key-value pair _graph name_-graph in node map where graph name is not @default, perform the following steps:
    1. If default graph does not have a graph name member, create one and initialize its value to a JSON object consisting of an@id member whose value is set to graph name.
    2. Reference the value associated with the graph name member in_default graph_ using the variable entry.
    3. Add an @graph member to entry and set it to an empty array.
    4. For each _id_-node pair in graph ordered by id, add node to the @graph member of entry.
  5. Initialize an empty array flattened.
  6. For each _id_-node pair in default graph ordered by id, add node to flattened.
  7. If context is null, return flattened.
  8. Otherwise, return the result of compacting flattened according theCompaction algorithm passing context ensuring that the compaction result uses the @graph keyword (or its alias) at the top-level, even if the context is empty or if there is only one element to put in the @graph array. This ensures that the returned document has a deterministic structure.

9.2 Node Map Generation

This algorithm creates a JSON object node map holding an indexed representation of the graphs and nodes represented in the passed expanded document. All nodes that are not uniquely identified by an IRI get assigned a (new) blank node identifier. The resulting node map will have a member for every graph in the document whose value is another object with a member for every node represented in the document. The default graph is stored under the @default member, all other graphs are stored under their graph name.

General Solution

This section is non-normative.

The algorithm recursively runs over an expanded JSON-LD document to collect all properties of a node in a single JSON object. The algorithm constructs aJSON object node map whose keys represent thegraph names used in the document (the default graph is stored under the key @default) and whose associated values are JSON objects which index the nodes in thegraph. If aproperty's value is a node object, it is replace by a node object consisting of only an@id member. If a node object has no @id member or it is identified by a blank node identifier, a new blank node identifier is generated. This relabeling of blank node identifiers is also be done for properties and values of@type.

Algorithm

The algorithm takes as input an expanded JSON-LD document element and a reference to a JSON object node map. Furthermore it has the optional parametersactive graph (which defaults to @default), an active subject,active property, and a reference to a JSON object list. If not passed, active subject, active property, and list are set to null.

  1. If element is an array, process each item in element as follows and then return:
    1. Run this algorithm recursively by passing item for element,node map, active graph, active subject,active property, and list.
  2. Otherwise element is a JSON object. Reference theJSON object which is the value of the active graph member of node map using the variable graph. If theactive subject is null, set node to null otherwise reference the active subject member of graph using the variable node.
  3. If element has an @type member, perform for each_item_ the following steps:
    1. If item is a blank node identifier, replace it with a newlygenerated blank node identifier passing item for identifier.
    2. If graph has no member item, create one and initialize its value to a JSON object consisting of a single member @id whose value is item.
  4. If element has an @value member, perform the following steps:
    1. If list is null, merge element into theactive property member of node; the resultingarray must not contain any duplicate values.
    2. Otherwise, append element to the @list member of list.
  5. Otherwise, if element has an @list member, perform the following steps:
    1. Initialize a new JSON object result consisting of a single member@list whose value is initialized to an empty array.
    2. Recursively call this algorithm passing the value of element's @list member for element, active graph,active subject, active property, and_result_ for list.
    3. Append result to the the value of the active property member of node.
  6. Otherwise element is a node object, perform the following steps:
    1. If element has an @id member, set id to its value and remove the member from element. If id is a blank node identifier, replace it with a newlygenerated blank node identifier passing id for identifier.
    2. Otherwise, set id to the result of theGenerate Blank Node Identifier algorithm passing null for identifier.
    3. If graph does not contain a member id, create one and initialize its value to a JSON object consisting of a single member @id whose value is id.
    4. If active property is not null, perform the following steps:
      1. Create a new JSON object reference consisting of a single member@id whose value is id.
      2. If list is null, merge element into theactive property member of node; the resultingarray must not contain any duplicate values.
      3. Otherwise, append element to the @list member of list.
    5. Reference the value of the id member of graph using the variable node.
    6. If element has an @type member, merge each of its values into the@type member of node and finally remove the@type member from element; the resultingarray must not contain any duplicate values.
    7. If element has an @index member, set the @index member of node to its value. If node has already an@index member with a different value, a[conflicting indexes](#idl-def-JsonLdErrorCode.conflicting-indexes) error has been detected and processing is aborted. Otherwise, continue by removing the @index member from element.
    8. If element has an @reverse member:
      1. Create a JSON object referenced node with a single member @id whose value is id.
      2. Set reverse map to the value of the @reverse member of_element_.
      3. For each key-value pair property_-values in reverse map:
        1. For each value of values:
        1. If value has a property member, append referenced node to its value; otherwise create a property member whose value is anarray containing referenced node.
        2. Recursively invoke this algorithm passing value for_element
        , node map, and active graph.
      4. Remove the @reverse member from element.
    9. If element has an @graph member, recursively invoke this algorithm passing the value of the @graph member for element,node map, and id for active graph before removing the @graph member from element.
    10. Finally, for each key-value pair property_-value in element ordered by_property perform the following steps:
      1. If property is a blank node identifier, replace it with a newlygenerated blank node identifier passing property for identifier.
      2. If node does not have a property member, create one and initialize its value to an empty array.
      3. Recursively invoke this algorithm passing value for element,node map, active graph, id for active subject,property for active property, and list.

9.3 Generate Blank Node Identifier

This algorithm is used to generate newblank node identifiers or to relabel an existing blank node identifier to avoid collision by the introduction of new ones.

General Solution

This section is non-normative.

The simplest case is if there exists already a blank node identifier in the identifier map for the passed identifier, in which case it is simply returned. Otherwise, a new blank node identifier is generated by concatenating the string _:b and the_counter_. If the passed identifier is not null, an entry is created in the identifier map associating the_identifier_ with the blank node identifier. Finally, the counter is increased by one and the newblank node identifier is returned.

Algorithm

The algorithm takes a single input variable identifier which may be null. Between its executions, the algorithm needs to keep an identifier map to relabel existingblank node identifiers consistently and a counter to generate newblank node identifiers. The_counter_ is initialized to 0 by default.

  1. If identifier is not null and has an entry in the_identifier map_, return the mapped identifier.
  2. Otherwise, generate a new blank node identifier by concatenating the string _:b and counter.
  3. Increment counter by 1.
  4. If identifier is not null, create a new entry for identifier in identifier map and set its value to the new blank node identifier.
  5. Return the new blank node identifier.

10. RDF Conversion Algorithms

This section describes algorithms to transform a JSON-LD document to anRDF dataset and vice versa. The algorithms are designed for in-memory implementations with random access to JSON object elements.

Throughout this section, the following vocabularyprefixes are used incompact IRIs:

Prefix IRI
rdf http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs http://www.w3.org/2000/01/rdf-schema#
xsd http://www.w3.org/2001/XMLSchema#

10.1 Convert to RDF Algorithm

This algorithms converts a JSON-LD document to an RDF dataset.

RDF does not currently allow ablank node identifier to be used as a graph name.

General Solution

This section is non-normative.

The JSON-LD document is expanded and converted to a node map using theNode Map Generation algorithm. This allows each graph represented within the document to be extracted and flattened, making it easier to process eachnode object. Each graph from the node map is processed to extract RDF triples, to which any (non-default) graph name is applied to create anRDF dataset. Each node object in the_node map_ has an @id member which corresponds to theRDF subject, the other members represent RDF predicates. Each member value is either an IRI orblank node identifier or can be transformed to anRDF literal to generate an RDF triple. Lists are transformed into anRDF Collection using the List to RDF Conversion algorithm.

Algorithm

The algorithm takes a JSON-LD document element and returns anRDF dataset.

  1. Expand element according theExpansion algorithm.
  2. Generate a node map according theNode Map Generation algorithm.
  3. Initialize an empty RDF dataset dataset.
  4. For each graph name and graph in node map:
    1. Initialize triples as an empty array.
    2. For each subject and node in graph:
      1. For each property and values in node:
        1. If property is @type, then for each_type_ in values, append a triple composed of subject, rdf:type, and type to triples.
        2. Otherwise, if property is a keyword continue to the next property_-values pair.
        3. Otherwise, property is an IRI orblank node identifier. For each item in values:
        1. If item is a list object, initialize_list triples
        as an empty array and_list head_ to the result of the List Conversion algorithm, passing the value associated with the @list key from_item_ and list triples. Append first atriple composed of subject,property, and list head to triples and finally append all triples from_list triples_ to triples.
        2. Otherwise, item is a value object or a node object. Append a triple composed of subject, property, and the result of using theObject to RDF Conversion algorithm passing item to triples.
    3. If graph name is @default, add_triples_ to the default graph in dataset.
    4. Otherwise, create a named graph in dataset composed of graph name and add triples.
  5. Return dataset.

10.2 Object to RDF Conversion

This algorithm takes a node object or value object and transforms it into anRDF resource to be used as the object of an RDF triple.

General Solution

This section is non-normative.

Value objects are transformed toRDF literals as defined in the sectionData Round Tripping whereasnode objects are transformed toIRIs orblank node identifiers.

Algorithm

The algorithm takes as its sole argument item which must be either a value object or node object.

  1. If item is a node object return theIRI or blank node identifier associated with its @id member.
  2. Otherwise, item is a value object. Initialize_value_ to the value associated with the @value member in item.
  3. Initialize datatype to the value associated with the@type member of item or null if_item_ does not have such a member.
  4. If value is true orfalse, set value to itscanonical lexical form as defined in the section Data Round Tripping. If datatype is null, set it toxsd:boolean.
  5. Otherwise, if value is a number, then set_value_ to its canonical lexical form as defined in the section Data Round Tripping. If datatype is null, set it to eitherxsd:integer or xsd:double, depending on if the value contains a fractional and/or an exponential component.
  6. Otherwise, if datatype is null, set it toxsd:string or rdf:langString, depending on if item has an @language member.
  7. Initialize literal as an RDF literal using_value_ and datatype. If item has an@language member and datatype isrdf:langString, then add the value associated with the@language key as the language of literal.
  8. Return literal.

10.3 List to RDF Conversion

List Conversion is the process of taking a list object and transforming it into anRDF Collection as defined in RDF Semantics [RDF-MT].

General Solution

This section is non-normative.

For each element of the list a new blank node identifier is allocated which is used to generate rdf:first andrdf:rest triples. The algorithm returns the list head, which is either the the first allocatedblank node identifier or rdf:nil if thelist is empty.

Algorithm

The algorithm takes two inputs: an array list and an empty array list triples used for returning the generated triples.

  1. If list is empty, return rdf:nil.
  2. Otherwise, create an array bnodes composed of anewly generated blank node identifier for each entry in list.
  3. Initialize an empty array list triples.
  4. For each pair of subject from bnodes and item from list:
    1. Append a triple composed of subject,rdf:first, and the result of using thObject to RDF Conversion algorithm passing item to list triples.
    2. Set rest as the next entry in bnodes, or if that does not exist, rdf:nil. Append atriple composed of subject,rdf:rest, and rest to list triples.
  5. Return the first blank node from bnodes orrdf:nil if bnodes is empty.

10.4 Convert from RDF Algorithm

This algorithm converts an RDF dataset consisting of adefault graph and zero or morenamed graphs into a JSON-LD document.

In some cases, data exists natively in the form of triples ortriples; for example, if the data was originally represented in an RDF dataset. This algorithm is designed to simply translate an array of triples into a JSON-LD document.

Note

This algorithm does not support lists containing lists.

General Solution

This section is non-normative.

Iterate through each graph in the dataset, convertingRDF Collections into a list and generating a JSON-LD document in expanded form for allRDF literals, IRIs and blank node identifiers.

Algorithm

The algorithm takes a single parameter dataset in the form of an array of an RDF dataset.

  1. Initialize default graph to a new JSON object consisting of two members, nodeMap and listMap, whose value is an an empty JSON object.
  2. Initialize graph map to an empty JSON object consisting of a single member @default whose value is set to reference default graph.
  3. Reference the nodeMap member of default graph using the variable default graph nodes.
  4. For each graph in dataset:
    1. If graph is the default graph, set name to @default, otherwise to thegraph name associated with graph.
    2. If graph map has no name member, create one and set its value to a to a new JSON object consisting of two members, nodeMap and listMap, whose value is an an empty JSON object.
    3. If graph is not the default graph and_default graph nodes_ does not have a name member, create such a member and initialize its value to a newJSON object with a single member @id whose value is name.
    4. Reference the value of the name member in graph map using the variable graph object.
    5. Reference the value of the nodeMap member in_graph object_ using the variable node map and the value of the listMap member using the variable_list map_.
    6. For each RDF triple in graph consisting of subject, predicate, and object:
      1. If predicate equals rdf:first,
        1. If list map has no subject member, create one and initialize it to an empty JSON object.
        2. Initialize the value of the first member of the subject member of list map to the result of theRDF to Object Conversion algorithm, passing object.
        3. Continue with the next RDF triple.
      2. If predicate equals rdf:rest:
        1. If list map has no subject member, create one and initialize it to an empty JSON object.
        2. Initialize the value of the rest member of the subject member of list map toobject, which is either an absolute IRI or blank node identifier.
        3. Continue with the next RDF triple.
      3. If node map does not have a subject member, create one and initialize its value to a new JSON object consisting of a single member @id whose value is set to subject.
      4. Reference the value of the subject member in node map using the variable node.
      5. If predicate equals rdf:type, and object is an IRI or blank node identifier, append object to the value of the @type member of node. If no such member exists, create one and initialize it to an array whose only item is_object_. Finally, continue to the nextRDF triple.
      6. If node does not have an predicate member, create one and initialize its value to an empty array.
      7. Set value to the result of using theRDF to Object Conversion algorithm, passing object.
      8. Add a reference to value to the to the array associated with the predicate member of node.
      9. If object is an IRI or ablank node identifier it might represent the head of a RDF list:
        1. If list map has no object member, create one and set its value to an empty JSON object.
        2. Set the head member of the object member of list map to a reference of value. This reference may be required later to replace the_value_ in the predicate member of node with a list object.
  5. For each name and graph object in graph map:
    1. Reference the value of the listMap member in_graph object_ using the variable list map.
    2. For each key-value pair subject_-entry of the value associated to the listMap member of_graph object:
      1. If entry has not an head and anfirst member it does not represent the head of a list. Continue with the next key-value pair.
      2. Reference the value of the head member in entry using the variable value.
      3. Remove the @id member from value.
      4. Add an @list member to value and initialize it to an array containing the value of thefirst member of entry.
      5. While the value associated with the rest member of entry is not rdf:nil:
        1. Set rest to the value of the rest member of entry.
        2. Set entry to the value associated with the_rest_ member of list map.
        3. Add the value associated with the first member of entry to the @list member of value.
  6. Initialize an empty array result.
  7. For each subject and node in default graph nodes ordered by subject:
    1. If graph map has an subject member:
      1. Add a @graph member to node and initialize its value to an empty array.
      2. Reference the nodeMap member of the subject member of graph map using the variable node map.
      3. For each key-value pair _s_-n in node map ordered by s, append n to the @graph member of node.
    2. Append node to result.
  8. Return result.

10.5 RDF to Object Conversion

This algorithm transforms an RDF literal to a JSON-LD value object and a RDF blank node or IRI to an JSON-LD node object.

General Solution

This section is non-normative.

RDF literals are transformed tovalue objects as defined in the sectionData Round Tripping whereasIRIs andblank node identifiers are transformed to node objects.

Algorithm

This algorithm takes as single input variable value that is converted to a JSON object.

  1. If value is an an IRI or ablank node identifier:
    1. If value equals rdf:nil return a newJSON object consisting of a single member@list whose value is set to an emptyarray. This is behavior is required by theConvert from RDF algorithm.
    2. Otherwise, return a new JSON object consisting of a single member @id whose value is set to value.
  2. Otherwise value is anRDF literal:
    1. Initialize a new empty JSON object result.
    2. Initialize converted value to value.
    3. Initialize type to null
    4. If thedatatype IRI of value equals xsd:boolean, set_converted value_ to true if thelexical form of value matches true, or false if it matches false.
    5. Otherwise, if thedatatype IRI of value equals xsd:integer orxsd:double, try to convert the literal to aJSON number. If the conversion is successful, store the result in converted value.
    6. Otherwise, if value is alanguage-tagged string add a member @language to result and set its value to thelanguage tag of value.
    7. Otherwise, set type to thedatatype IRI of value, unless it equals xsd:string which is ignored.
    8. Add a member @value to result whose value is set to converted value.
    9. If type is not null, add a member @type to result whose value is set to type.
    10. Return result.

10.6 Data Round Tripping

When converting JSON-LD to RDF JSON-native types such as_numbers_ and booleans are automatically coerced toxsd:integer, xsd:double, or xsd:boolean. Implementers MUST ensure that the result is in canonical lexical form. Acanonical lexical form is a set of literals from among the valid set of literals for a datatype such that there is a one-to-one mapping between the canonical lexical form and a value in the value space as defined in [XMLSCHEMA11-2]. In other words, every value MUST be converted to a deterministic string representation.

The canonical lexical form of an integer, i.e., a number without fractions or a number coerced to xsd:integer, is a finite-length sequence of decimal digits (0-9) with an optional leading minus sign; leading zeros are prohibited. To convert the number in JavaScript, implementers can use the following snippet of code:

Example 12: Sample integer serialization implementation in JavaScript

(value).toFixed(0).toString()

The canonical lexical form of a double, i.e., a number with fractions or a number coerced to xsd:double, consists of a mantissa followed by the character "E", followed by an exponent. The mantissa MUST be a decimal number. The exponent_MUST_ be an integer. Leading zeros and a preceding plus sign (+) are prohibited in the exponent. If the exponent is zero, it must be indicated by E0. For the mantissa, the preceding optional plus sign is prohibited and the decimal point is required. Leading and trailing zeros are prohibited subject to the following: number representations must be normalized such that there is a single digit which is non-zero to the left of the decimal point and at least a single digit to the right of the decimal point unless the value being represented is zero. The canonical representation for zero is 0.0E0.xsd:double's value space is defined by the IEEE double-precision 64-bit floating point type [IEEE-754-1985]; in JSON-LD the mantissa is rounded to 15 digits after the decimal point.

To convert the number in JavaScript, implementers can use the following snippet of code:

Example 13: Sample floating point number serialization implementation in JavaScript

(value).toExponential(15).replace(/(\d)0*e+?/,'$1E')

Note

When data such as decimals need to be normalized, JSON-LD authors should not use values that are going to undergo automatic conversion. This is due to the lossy nature of xsd:double values. Authors should instead use the expanded object form to set the canonical lexical form directly.

The canonical lexical form of the boolean values true and false are the strings true and false.

When JSON-native numbers, are type coerced, lossless data round-tripping can not be guaranteed as rounding errors might occur. Additionally, only literals typed asxsd:integer, xsd:double, and xsd:boolean are automatically converted back to their JSON-native counterparts in whenconverting from RDF.

Some JSON serializers, such as PHP's native implementation in some versions, backslash-escape the forward slash character. For example, the valuehttp://example.com/ would be serialized as http:\/\/example.com\/. This is problematic as other JSON parsers might not understand those escaping characters. There is no need to backslash-escape forward slashes in JSON-LD. To aid interoperability between JSON-LD processors, a JSON-LD serializer MUST NOT backslash-escape forward slashes.

11. The Application Programming Interface

This API provides a clean mechanism that enables developers to convert JSON-LD data into a a variety of output formats that are often easier to work with. A conformant JSON-LD Processor MUST implement the entirety of the following API.

11.1 JsonLdProcessor

The JSON-LD Processor interface is the high-level programming structure that developers use to access the JSON-LD transformation methods.

It is important to highlight that conformantJSON-LD processors MUST NOT modify the input parameters. If an error is detected, the callback is invoked passing a JsonLdError with the corresponding error[code](#widl-JsonLdError-code) and processing is stopped.

[Constructor] interface JsonLdProcessor { void expand ((object or object[] or DOMString) input, JsonLdCallback callback, optional JsonLdOptions? options); void compact ((object or object[] or DOMString) input, (object or DOMString)? context, JsonLdCallback callback, optional JsonLdOptions? options); void flatten ((object or object[] or DOMString) input, (object or DOMString)? context, JsonLdCallback callback, optional JsonLdOptions? options); };

Methods

compact

Compacts the given input using thecontext according to the steps in theCompaction algorithm:

  1. If the passed input is a DOMString representing the IRI of a remote document, dereference it. If the retrieved document has a content type different than application/ld+json or application/json or if the document cannot be parsed as JSON, invoke the callback passing an[loading document failed](#idl-def-JsonLdErrorCode.loading-document-failed) error.
  2. Initialize a new empty active context.
  3. If an[expandContext](#widl-JsonLdOptions-expandContext) has been passed, update the active context using theContext Processing algorithm, passing the[expandContext](#widl-JsonLdOptions-expandContext) as local context.
  4. If the input has been retrieved and the response has a content typeapplication/json and an HTTP Link Header [RFC5988] using thehttp://www.w3.org/ns/json-ld#context link relation, update theactive context using theContext Processing algorithm, passing the context referenced in the HTTP Link Header as local context.
  5. Set expanded to the result of using theExpansion algorithm, passing theactive context and input as element.
  6. Set compacted to the result of using theCompaction algorithm, passing_context_, expanded as element, and if passed, the[compactArrays](#widl-JsonLdOptions-compactArrays) flag in options.
  7. Invoke callback, passing null for error and_compacted_ for document.
Parameter Type Nullable Optional Description
input (object or object[] or DOMString) The JSON-LD object or array of JSON-LD objects to perform the compaction upon or anIRI referencing the JSON-LD document to compact.
context (object or DOMString) The context to use when compacting the input; either in the form of a JSON object or as IRI.
callback JsonLdCallback A callback that is called when processing completed successfully on the given input, or a fatal error prevented processing from completing.
options JsonLdOptions A set of options to configure the algorithms. This allows, e.g., to set the input document's base IRI.

Return type: void

expand

Expands the given input according to the steps in the Expansion algorithm:

  1. If the passed input is a DOMString representing the IRI of a remote document, dereference it. If the retrieved document has a content type different than application/ld+json or application/json or if the document cannot be parsed as JSON, invoke the callback passing an[loading document failed](#idl-def-JsonLdErrorCode.loading-document-failed) error.
  2. Initialize a new empty active context.
  3. If an[expandContext](#widl-JsonLdOptions-expandContext) has been passed, update the active context using theContext Processing algorithm, passing the[expandContext](#widl-JsonLdOptions-expandContext) as local context.
  4. If the input has been retrieved and the response has a content typeapplication/json and an HTTP Link Header [RFC5988] using thehttp://www.w3.org/ns/json-ld#context link relation, update theactive context using theContext Processing algorithm, passing the context referenced in the HTTP Link Header as local context.
  5. Set expanded to the result of using theExpansion algorithm, passing theactive context and input as element.
  6. Invoke callback, passing null for error and_expanded_ for document.
Parameter Type Nullable Optional Description
input (object or object[] or DOMString) The JSON-LD object or array of JSON-LD objects to perform the expansion upon or anIRI referencing the JSON-LD document to expand.
callback JsonLdCallback A callback that is called when processing completed successfully on the given input, or a fatal error prevented processing from completing.
options JsonLdOptions A set of options to configure the used algorithms such. This allows, e.g., to set the input document's base IRI.

Return type: void

flatten

Flattens the given input andcompacts it using the passed context according to the steps in the Flattening algorithm:

  1. If the passed input is a DOMString representing the IRI of a remote document, dereference it. If the retrieved document has a content type different than application/ld+json or application/json or if the document cannot be parsed as JSON, invoke the callback passing an[loading document failed](#idl-def-JsonLdErrorCode.loading-document-failed) error.
  2. Initialize a new empty active context.
  3. If an[expandContext](#widl-JsonLdOptions-expandContext) has been passed, update the active context using theContext Processing algorithm, passing the[expandContext](#widl-JsonLdOptions-expandContext) as local context.
  4. If the input has been retrieved and the response has a content typeapplication/json and an HTTP Link Header [RFC5988] using thehttp://www.w3.org/ns/json-ld#context link relation, update theactive context using theContext Processing algorithm, passing the context referenced in the HTTP Link Header as local context.
  5. Set expanded to the result of using theExpansion algorithm, passing theactive context and input as element.
  6. Initialize an empty identifier map and a counter (set to 0) to be used by theGenerate Blank Node Identifier algorithm.
  7. Set flattened to the result of using theFlattening algorithm, passing_expanded_ as element, context, and if passed, the[compactArrays](#widl-JsonLdOptions-compactArrays) flag in options (which is internally passed to theCompaction algorithm).
  8. Invoke callback, passing null for error and_flattened_ for document.
Parameter Type Nullable Optional Description
input (object or object[] or DOMString) The JSON-LD object or array of JSON-LD objects or an IRI referencing the JSON-LD document to flatten.
context (object or DOMString) The context to use when compacting the flattened input; either in the form of a JSON object or as IRI. Ifnull is passed, the result will not be compacted but kept in expanded form.
callback JsonLdCallback A callback that is called when processing completed successfully on the given input, or a fatal error prevented processing from completing.
options JsonLdOptions A set of options to configure the used algorithms such. This allows, e.g., to set the input document's base IRI.

Return type: void

11.2 Callbacks

JSON-LD processors utilize callbacks in order to exchange information in an asynchronous manner with applications. This section details the parameters of those callbacks.

JsonLdCallback

The JsonLdCallback is called when an API method ofJsonLdProcessor has been completed, either successfully or by a fatal error.

callback JsonLdCallback = void (JsonLdError error, object or object[] document);

Callback JsonLdCallback Parameters

error of type JsonLdError

If the value is null, then no issue was detected during processing. Otherwise, a processing error was detected and the details are contained within the error object.

document of type array of object or object

The processed JSON-LD document.

LoadContextCallback

The LoadContextCallback defines the callback that custom context loaders have to implement to be used to retrieve remote contexts.

callback LoadContextCallback = void (DOMString url, ContextLoadedCallback callback);

Callback LoadContextCallback Parameters

url of type DOMString

The URL of the remote context to load.

callback of type ContextLoadedCallback

The callback that is called when the remote context has been successfully loaded or an error preventing its loading has been detected.

ContextLoadedCallback

The ContextLoadedCallback is called in response to a call of the LoadContextCallback.

callback ContextLoadedCallback = void (JsonLdError error, DOMString url, DOMString context);

Callback ContextLoadedCallback Parameters

error of type JsonLdError

If the value is null, then no issue was detected during processing. Otherwise, a processing issue was detected and the details are contained within the error object. All errors MUST have a JsonLdErrorCode of[loading remote context failed](#idl-def-JsonLdErrorCode.loading-remote-context-failed).

url of type DOMString

The final URL of the loaded JSON-LD context. This is important to handle HTTP redirects properly.

context of type DOMString

The raw content of the retrieved JSON-LD context.

11.3 Data Structures

This section describes datatype definitions used within the JSON-LD API.

JsonLdOptions

The JsonLdOptions type is used to pass various options to theJsonLdProcessor methods.

dictionary JsonLdOptions { DOMString base; boolean compactArrays = true; LoadContextCallback loadContext; object or DOMString expandContext = null; DOMString processingMode = "json-ld-1.0"; };

Dictionary JsonLdOptions Members

base of type DOMString

The Base IRI to use when expanding or compacting the document. This overrides the value of_input_ if it is a IRI. If not specified and input is not an IRI, the base IRI defaults to the current document IRI if in a browser context, or the empty string if there is no document context.

The default value of this option implies that all IRIs that cannot be compacted otherwise are transformed to relative IRIs during compaction. To avoid that data is being lost, developers thus have to store the base IRI along with the compacted document. This might be problematic in practice and thus the default behavior might be changed in future. Furthermore, the relationship of this option to the @base keyword (which is at risk) should be further investigated.

compactArrays of type boolean, defaulting to true

If set to true, the JSON-LD processor replaces arrays with just one element with that element during compaction. If set to false, all arrays will remain arrays even if they have just one element.

expandContext of type object or DOMString, defaulting to null

A context that is used to initialize the active context when expanding a document.

loadContext of type LoadContextCallback

The callback of the context loader to be used to retrieve remote contexts. If specified, it MUST be used to retrieve remote contexts; otherwise, if not specified, the processor's built-in context loader MUST be used.

processingMode of type DOMString, defaulting to "json-ld-1.0"

If set to json-ld-1.0, the JSON-LD Processor MUST produce exactly the same results as the algorithms defined in this specification. If set to another value, the JSON-LD Processor is allowed to extend or modify the algorithms defined in this specification to enable application-specific optimizations. The definition of such optimizations is beyond the scope of this specification and thus not defined. Consequently, different implementations MAY implement different optimizations. Developers MUST NOT define modes beginning with json-ld as they are reserved for future versions of this specification.

JsonLdError

The JsonLdError type is used to report processing errors to a JsonLdCallback.

dictionary JsonLdError { JsonLdErrorCode code; DOMString? message; };

Dictionary JsonLdError Members

code of type JsonLdErrorCode

a string representing the particular error type, as described in the various algorithms in this document.

message of type DOMString, nullable

an optional error message containing additional debugging information. The specific contents of error messages are outside the scope of this specification.

JsonLdErrorCode

The JsonLdErrorCode represents the collection of valid JSON-LD error codes.

enum JsonLdErrorCode { "loading document failed", "list of lists", "invalid @index value", "conflicting indexes", "invalid @id value", "invalid local context", "loading remote context failed", "invalid remote context", "recursive context inclusion", "invalid base IRI", "invalid vocab mapping", "invalid default language", "keyword redefinition", "invalid term definition", "invalid reverse property", "invalid IRI mapping", "cyclic IRI mapping", "invalid keyword alias", "invalid type mapping", "invalid language mapping", "colliding keywords", "invalid container mapping", "invalid type value", "invalid value object", "invalid value object value", "invalid language-tagged string", "invalid language-tagged value", "invalid typed value", "invalid set or list object", "invalid language map value", "compaction to list of lists", "invalid reverse property map", "invalid @reverse value", "invalid reverse property value" };

Enumeration description
loading document failed The document could not be loaded or parsed as JSON.
list of lists A list of lists was detected. List of lists are not supported in this version of JSON-LD due to the algorithmic complexity associated with conversion to RDF.
invalid @index value An @index member was encountered whose value was not a string.
conflicting indexes Multiple conflicting indexes have been found for the same node.
invalid @id value An @id member was encountered whose value was not astring.
invalid local context In invalid local context was detected.
loading remote context failed There was a problem encountered loading a remote context.
invalid remote context No valid context document has been found for a referenced, remote context.
recursive context inclusion A cycle in remote context inclusions has been detected.
invalid base IRI An invalid base IRI has been detected, i.e., it is neither an absolute IRI nor null.
invalid vocab mapping An invalid vocabulary mapping has been detected, i.e., it is neither an absolute IRI nor null.
invalid default language The value of the default language is not a string or null and thus invalid.
keyword redefinition A keyword redefinition has been detected.
invalid term definition An invalid term definition has been detected.
invalid reverse property An invalid reverse property definition has been detected.
invalid IRI mapping A local context contains a term that has an invalid or missing IRI mapping.
cyclic IRI mapping A cycle in IRI mappings has been detected.
invalid keyword alias An invalid keyword alias definition has been encountered.
invalid type mapping An @type member in a term definition was encountered whose value could not be expanded to anabsolute IRI.
invalid language mapping An @language member in a term definition was encountered whose value was neither a string nornull and thus invalid.
colliding keywords Two properties which expand to the same keyword have been detected. This might occur if a keyword and an an alias thereof are used at the same time.
invalid container mapping An @container member was encountered whose value was not one of the following strings:@list, @set, or @index.
invalid type value An invalid value for an @type member has been detected, i.e., the value was neither a string nor an array of strings.
invalid value object A value object with disallowed members has been detected.
invalid value object value An invalid value for the @value member of avalue object has been detected, i.e., it is neither a scalar nor null.
invalid language-tagged string A language-tagged string with an invalid language value was detected.
invalid language-tagged value A number, true, or false with an associated language tag was detected.
invalid typed value A typed value with an invalid type was detected.
invalid set or list object A set object or list object with disallowed members has been detected.
invalid language map value An invalid value in a language map has been detected. It has to be a string or an array ofstrings.
compaction to list of lists The compacted document contains a list of lists as multiple lists have been compacted to the same term.
invalid reverse property map An invalid reverse property map has been detected. Nokeywords apart from @context are allowed in reverse property maps.
invalid @reverse value An invalid value for an @reverse member has been detected, i.e., the value was not a JSON object.
invalid reverse property value An invalid value for a reverse property has been detected. The value of an inverse property must be a node object.

A. Acknowledgements

This section is non-normative.

A large amount of thanks goes out to the JSON-LD Community Group participants who worked through many of the technical issues on the mailing list and the weekly telecons - of special mention are Niklas Lindström, François Daoust, Lin Clark, and Zdenko 'Denny' Vrandečić. The editors would like to thank Mark Birbeck, who provided a great deal of the initial push behind the JSON-LD work via his work on RDFj. The work of Dave Lehn and Mike Johnson are appreciated for reviewing, and performing several implementations of the specification. Ian Davis is thanked for his work on RDF/JSON. Thanks also to Nathan Rixham, Bradley P. Allen, Kingsley Idehen, Glenn McDonald, Alexandre Passant, Danny Ayers, Ted Thibodeau Jr., Olivier Grisel, Josh Mandel, Eric Prud'hommeaux, David Wood, Guus Schreiber, Pat Hayes, Sandro Hawke, and Richard Cyganiak or their input on the specification.

B. References

B.1 Normative references

[IEEE-754-1985]

IEEE. IEEE Standard for Binary Floating-Point Arithmetic. URL: http://standards.ieee.org/reading/ieee/std_public/description/busarch/754-1985_desc.html

[JSON-LD]

Manu Sporny, Gregg Kellogg, Markus Lanthaler, Editors. JSON-LD 1.0. W3C Editor's Draft (work in progress). URL: http://json-ld.org/spec/latest/json-ld-syntax/

[RDF-MT]

Patrick Hayes. RDF Semantics. 10 February 2004. W3C Recommendation. URL: http://www.w3.org/TR/2004/REC-rdf-mt-20040210

[RFC2119]

S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Internet RFC 2119. URL: http://www.ietf.org/rfc/rfc2119.txt

[RFC3986]

T. Berners-Lee; R. Fielding; L. Masinter. Uniform Resource Identifier (URI): Generic Syntax. January 2005. RFC 3986. URL: http://www.ietf.org/rfc/rfc3986.txt

[RFC3987]

M. Dürst; M. Suignard. Internationalized Resource Identifiers (IRIs). January 2005. RFC 3987. URL: http://www.ietf.org/rfc/rfc3987.txt

[RFC4627]

D. Crockford. The application/json Media Type for JavaScript Object Notation (JSON). July 2006. RFC 4627. URL: http://www.ietf.org/rfc/rfc4627.txt

[RFC5988]

M. Nottingham. Web Linking. October 2010. Internet RFC 5988. URL: http://www.ietf.org/rfc/rfc5988.txt

[WEBIDL]

Cameron McCormack, Editor. Web IDL. 19 April 2012. W3C Candidate Recommendation (work in progress). URL: http://www.w3.org/TR/2012/CR-WebIDL-20120419/. The latest edition is available at http://www.w3.org/TR/WebIDL/

[XMLSCHEMA11-2]

Henry S. Thompson et al. W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes. 5 April 2012. W3C Recommendation. URL: http://www.w3.org/TR/2012/REC-xmlschema11-2-20120405/

B.2 Informative references

[BCP47]

A. Phillips; M. Davis. Tags for Identifying Languages. September 2009. IETF Best Current Practice. URL: http://tools.ietf.org/html/bcp47

[ECMA-262]

ECMAScript Language Specification. June 2011. URL: http://www.ecma-international.org/publications/standards/Ecma-262.htm

[JSON-LD-TESTS]

JSON-LD Test Suite (work in progress).

[RDF11-CONCEPTS]

Richard Cyganiak, David Wood, Editors. RDF 1.1 Concepts and Abstract Syntax. 15 January 2013. W3C Working Draft (work in progress). URL: http://www.w3.org/TR/2013/WD-rdf11-concepts-20130115/. The latest edition is available at http://www.w3.org/TR/rdf11-concepts/

[TURTLE]

Eric Prud'hommeaux, Gavin Carothers, Editors. Turtle: Terse RDF Triple Language. 19 February 2013. W3C Candidate Recommendation (work in progress). URL: http://www.w3.org/TR/2013/CR-turtle-20130219/. The latest edition is available at http://www.w3.org/TR/turtle/